[
  {
    "path": ".gitignore",
    "content": "bin/\r\nobj/\r\nbuild/\r\n_ReSharper.*\r\n.vscode\r\n*.ncb\r\n*.aps\r\n*.suo\r\n*.sln.cache\r\n*.dotCover\r\n*.user\r\n.vs\r\nManyConsole.Tests/TestResults\r\nManyConsoleModeCommand.Test/TestResults\r\n**/Properties/AssemblyInfo.cs\r\n\r\n"
  },
  {
    "path": ".nuget/packages.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<packages>\r\n  <package id=\"psake\" version=\"4.2.0.1\" />\r\n</packages>"
  },
  {
    "path": "LICENSE.txt",
    "content": "Copyright (c) 2010 Frank Schwieterman\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "ManyConsole/ConsoleCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Xml.Linq;\r\nusing ManyConsole.Internal;\r\nusing Mono.Options;\r\n\r\nnamespace ManyConsole\r\n{\r\n    public abstract class ConsoleCommand : ConsoleUtil\r\n    {\r\n        public ConsoleCommand()\r\n        {\r\n            OneLineDescription = \"\";\r\n            Options = new OptionSet();\r\n            TraceCommandAfterParse = true;\r\n            TraceCommandSkipProperties = new SortedSet<string>(DefaultTraceCommandSkipProperties, StringComparer.Ordinal);\r\n            RemainingArgumentsCountMax = 0;\r\n            RemainingArgumentsHelpText = \"\";\r\n            OptionsHasd = new OptionSet();\r\n            RequiredOptions = new List<RequiredOptionRecord>();\r\n        }\r\n\r\n        public string Command { get; private set; }\r\n        public List<string> Aliases { get; private set; }\r\n        public string OneLineDescription { get; private set; }\r\n        public string LongDescription { get; private set; }\r\n        public OptionSet Options { get; protected set; }\r\n        public bool TraceCommandAfterParse { get; private set; }\r\n        public ISet<string> TraceCommandSkipProperties { get; private set; }\r\n        public int? RemainingArgumentsCountMin { get; private set; }\r\n        public int? RemainingArgumentsCountMax { get; private set; }\r\n        public string RemainingArgumentsHelpText { get; private set; }\r\n        private OptionSet OptionsHasd { get; set; }\r\n        private List<RequiredOptionRecord> RequiredOptions { get; set; }\r\n\r\n        private static readonly string[] DefaultTraceCommandSkipProperties =\r\n        {\r\n            nameof(Command),\r\n            nameof(Aliases),\r\n            nameof(OneLineDescription),\r\n            nameof(LongDescription),\r\n            nameof(Options),\r\n            nameof(TraceCommandAfterParse),\r\n            nameof(TraceCommandSkipProperties),\r\n            nameof(RemainingArgumentsCountMin),\r\n            nameof(RemainingArgumentsCountMax),\r\n            nameof(RemainingArgumentsHelpText),\r\n            nameof(RequiredOptions)\r\n        };\r\n\r\n        public ConsoleCommand IsCommand(string command, string oneLineDescription = \"\")\r\n        {\r\n            Command = command;\r\n            OneLineDescription = oneLineDescription;\r\n            return this;\r\n        }\r\n        public ConsoleCommand HasAlias(string alias)\r\n        {\r\n            if (!String.IsNullOrEmpty(alias))\r\n            {\r\n                if (Aliases == null)\r\n                {\r\n                    Aliases = new List<string>();\r\n                }\r\n                Aliases.Add(alias);\r\n            }\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasLongDescription(string longDescription)\r\n        {\r\n            LongDescription = longDescription;\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasAdditionalArguments(int? count = 0, string helpText = \"\")\r\n        {\r\n            HasAdditionalArgumentsBetween(count, count, helpText);\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasAdditionalArgumentsBetween(int? min, int? max, string helpText = \"\")\r\n        {\r\n            RemainingArgumentsCountMin = min;\r\n            RemainingArgumentsCountMax = max;\r\n            RemainingArgumentsHelpText = helpText;\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand AllowsAnyAdditionalArguments(string helpText = \"\")\r\n        {\r\n            HasAdditionalArgumentsBetween(null, null, helpText);\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand SkipsCommandSummaryBeforeRunning()\r\n        {\r\n            TraceCommandAfterParse = false;\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand SkipsPropertyInCommandSummary(string propertyName)\r\n        {\r\n            TraceCommandSkipProperties.Add(propertyName);\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasOption(string prototype, string description, Action<string> action)\r\n        {\r\n            OptionsHasd.Add(prototype, description, action);\r\n\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasRequiredOption(string prototype, string description, Action<string> action)\r\n        {\r\n            HasRequiredOption<string>(prototype, description, action);\r\n\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasOption<T>(string prototype, string description, Action<T> action)\r\n        {\r\n            OptionsHasd.Add(prototype, description, action);\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasRequiredOption<T>(string prototype, string description, Action<T> action)\r\n        {\r\n            var requiredRecord = new RequiredOptionRecord();\r\n\r\n            var previousOptions = OptionsHasd.ToArray();\r\n\r\n            OptionsHasd.Add<T>(prototype, description, s =>\r\n            {\r\n                requiredRecord.WasIncluded = true;\r\n                action(s);\r\n            });\r\n\r\n            var newOption = OptionsHasd.Single(o => !previousOptions.Contains(o));\r\n\r\n            requiredRecord.Name = newOption.GetNames().OrderByDescending(n => n.Length).First();\r\n\r\n            RequiredOptions.Add(requiredRecord);\r\n\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasOption(string prototype, string description, OptionAction<string, string> action)\r\n        {\r\n            OptionsHasd.Add(prototype, description, action);\r\n            return this;\r\n        }\r\n\r\n        public ConsoleCommand HasOption<TKey, TValue>(string prototype, string description, OptionAction<TKey, TValue> action)\r\n        {\r\n            OptionsHasd.Add(prototype, description, action);\r\n            return this;\r\n        }\r\n\r\n        public virtual void CheckRequiredArguments()\r\n        {\r\n            var missingOptions = this.RequiredOptions\r\n                .Where(o => !o.WasIncluded).Select(o => o.Name).OrderBy(n => n).ToArray();\r\n\r\n            if (missingOptions.Any())\r\n            {\r\n                throw new ConsoleHelpAsException(\"Missing option: \" + String.Join(\", \", missingOptions));\r\n            }\r\n        }\r\n\r\n        public virtual int? OverrideAfterHandlingArgumentsBeforeRun(string[] remainingArguments)\r\n        {\r\n            return null;\r\n        }\r\n\r\n        public abstract int Run(string[] remainingArguments);\r\n\r\n        public OptionSet GetActualOptions()\r\n        {\r\n            var result = new OptionSet();\r\n\r\n            foreach (var option in Options)\r\n                result.Add(option);\r\n\r\n            foreach (var option in OptionsHasd)\r\n                result.Add(option);\r\n\r\n            return result;\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "ManyConsole/ConsoleCommandDispatcher.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.ComponentModel;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Reflection;\r\nusing ManyConsole.Internal;\r\n\r\nnamespace ManyConsole\r\n{\r\n    public class ConsoleCommandDispatcher\r\n    {\r\n        public static int DispatchCommand(ConsoleCommand command, string[] arguments, TextWriter consoleOut)\r\n        {\r\n            return DispatchCommand(new [] {command}, arguments, consoleOut);\r\n        }\r\n\r\n        public static int DispatchCommand(IEnumerable<ConsoleCommand> commands, string[] arguments, TextWriter consoleOut, bool skipExeInExpectedUsage = false)\r\n        {\r\n            ConsoleCommand selectedCommand = null;\r\n\r\n            TextWriter console = consoleOut;\r\n\r\n            foreach (var command in commands)\r\n            {\r\n                ValidateConsoleCommand(command);\r\n            }\r\n\r\n            try\r\n            {\r\n                List<string> remainingArguments;\r\n\r\n                if (commands.Count() == 1)\r\n                {\r\n                    selectedCommand = commands.First();\r\n\r\n                    if (arguments.Count() > 0 && CommandMatchesArgument(selectedCommand, arguments.First()))\r\n                    {\r\n                        remainingArguments = selectedCommand.GetActualOptions().Parse(arguments.Skip(1));\r\n                    }\r\n                    else\r\n                    {\r\n                        remainingArguments = selectedCommand.GetActualOptions().Parse(arguments);\r\n                    }\r\n                }\r\n                else\r\n                {\r\n                    if (arguments.Count() < 1)\r\n                        throw new ConsoleHelpAsException(\"No arguments specified.\");\r\n\r\n                    if (arguments[0].Equals(\"help\", StringComparison.InvariantCultureIgnoreCase))\r\n                    {\r\n                        selectedCommand = GetMatchingCommand(commands, arguments.Skip(1).FirstOrDefault());\r\n\r\n                        if (selectedCommand == null)\r\n                            ConsoleHelp.ShowSummaryOfCommands(commands, console);\r\n                        else\r\n                            ConsoleHelp.ShowCommandHelp(selectedCommand, console, skipExeInExpectedUsage);\r\n\r\n                        return -1;\r\n                    }\r\n\r\n                    selectedCommand = GetMatchingCommand(commands, arguments.First());\r\n\r\n                    if (selectedCommand == null)\r\n                        throw new ConsoleHelpAsException(\"Command name not recognized.\");\r\n\r\n                    remainingArguments = selectedCommand.GetActualOptions().Parse(arguments.Skip(1));\r\n                }\r\n\r\n                selectedCommand.CheckRequiredArguments();\r\n\r\n                CheckRemainingArguments(remainingArguments, selectedCommand.RemainingArgumentsCountMin, selectedCommand.RemainingArgumentsCountMax);\r\n\r\n                var preResult = selectedCommand.OverrideAfterHandlingArgumentsBeforeRun(remainingArguments.ToArray());\r\n\r\n                if (preResult.HasValue)\r\n                    return preResult.Value;\r\n\r\n                ConsoleHelp.ShowParsedCommand(selectedCommand, console);\r\n\r\n                return selectedCommand.Run(remainingArguments.ToArray());\r\n            }\r\n            catch (ConsoleHelpAsException e)\r\n            {\r\n                return DealWithException(e, console, skipExeInExpectedUsage, selectedCommand, commands);\r\n            }\r\n            catch (Mono.Options.OptionException e)\r\n            {\r\n                return DealWithException(e, console, skipExeInExpectedUsage, selectedCommand, commands);\r\n            }\r\n        }\r\n\r\n        private static int DealWithException(Exception e, TextWriter console, bool skipExeInExpectedUsage, ConsoleCommand selectedCommand, IEnumerable<ConsoleCommand> commands)\r\n        {\r\n            if (selectedCommand != null)\r\n            {\r\n                console.WriteLine();\r\n                console.WriteLine(e.Message);\r\n                ConsoleHelp.ShowCommandHelp(selectedCommand, console, skipExeInExpectedUsage);\r\n            }\r\n            else\r\n            {\r\n                ConsoleHelp.ShowSummaryOfCommands(commands, console);\r\n            }\r\n\r\n            return -1;\r\n        }\r\n  \r\n        private static ConsoleCommand GetMatchingCommand(IEnumerable<ConsoleCommand> command, string name)\r\n        {\r\n            return command.FirstOrDefault(c => CommandMatchesArgument(c, name));\r\n        }\r\n\r\n        private static bool CommandMatchesArgument(ConsoleCommand command, string arg)\r\n        {\r\n            if (String.IsNullOrEmpty(arg))\r\n            {\r\n                return false;\r\n            }\r\n            if (arg.Equals(command.Command, StringComparison.OrdinalIgnoreCase))\r\n            {\r\n                return true;\r\n            } else if (command.Aliases != null && command.Aliases.Count > 0)\r\n            {\r\n                foreach (string alias in command.Aliases)\r\n                {\r\n                    if (arg.Equals(alias, StringComparison.OrdinalIgnoreCase))\r\n                    {\r\n                        return true;\r\n                    }\r\n                }\r\n            }\r\n            return false;\r\n        }\r\n\r\n        private static void ValidateConsoleCommand(ConsoleCommand command)\r\n        {\r\n            if (string.IsNullOrEmpty(command.Command))\r\n            {\r\n                throw new InvalidOperationException(String.Format(\r\n                    \"Command {0} did not call IsCommand in its constructor to indicate its name and description.\",\r\n                    command.GetType().Name));\r\n            }\r\n        }\r\n\r\n        private static void CheckRemainingArguments(List<string> remainingArguments, int? parametersRequiredAfterOptionsMin, int? parametersRequiredAfterOptionsMax)\r\n        {\r\n            ConsoleUtil.VerifyNumberOfArguments(remainingArguments.ToArray(),\r\n                    parametersRequiredAfterOptionsMin, parametersRequiredAfterOptionsMax);\r\n        }\r\n\r\n        public static IEnumerable<ConsoleCommand> FindCommandsInSameAssemblyAs(Type typeInSameAssembly)\r\n        {\r\n            if (typeInSameAssembly == null)\r\n                throw new ArgumentNullException(\"typeInSameAssembly\");\r\n\r\n            return FindCommandsInAssembly(typeInSameAssembly.Assembly);\r\n        }\r\n\r\n        public static IEnumerable<ConsoleCommand> FindCommandsInAllLoadedAssemblies()\r\n        {\r\n            return AppDomain.CurrentDomain.GetAssemblies().SelectMany(FindCommandsInAssembly);\r\n        }\r\n\r\n        public static IEnumerable<ConsoleCommand> FindCommandsInAssembly(Assembly assembly)\r\n        {\r\n            if (assembly == null)\r\n                throw new ArgumentNullException(\"assembly\");\r\n\r\n            var commandTypes = assembly.GetTypes()\r\n                .Where(t => t.IsSubclassOf(typeof(ConsoleCommand)))\r\n                .Where(t => !t.IsAbstract)\r\n                .OrderBy(t => t.FullName);\r\n\r\n            List<ConsoleCommand> result = new List<ConsoleCommand>();\r\n\r\n            foreach(var commandType in commandTypes)\r\n            {\r\n                var constructor = commandType.GetConstructor(new Type[] { });\r\n\r\n                if (constructor == null)\r\n                    continue;\r\n\r\n                result.Add((ConsoleCommand)constructor.Invoke(new object[] { }));\r\n            }\r\n\r\n            return result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole/ConsoleHelpAsException.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole\r\n{\r\n    public class ConsoleHelpAsException : Exception\r\n    {\r\n        public ConsoleHelpAsException(string message) : base(message)\r\n        {\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole/Internal/ConsoleHelp.cs",
    "content": "﻿using System;\r\nusing System.Collections;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Reflection;\r\nusing System.Xml.Linq;\r\n\r\nnamespace ManyConsole.Internal\r\n{\r\n    public class ConsoleHelp\r\n    {\r\n        public static void ShowSummaryOfCommands(IEnumerable<ConsoleCommand> commands, TextWriter console)\r\n        {\r\n            console.WriteLine();\r\n            console.WriteLine(\"Available commands are:\");\r\n            console.WriteLine();\r\n\r\n            string helpCommand = \"help <name>\";\r\n\r\n            var commandList = commands.ToList();\r\n            var n = commandList.Select(c => c.Command).Concat(new [] { helpCommand}).Max(c => c.Length) + 1;\r\n            var commandFormatString = \"    {0,-\" + n + \"}- {1}\";\r\n\r\n            foreach (var command in commandList)\r\n            {\r\n                console.WriteLine(commandFormatString, command.Command, command.OneLineDescription);\r\n            }\r\n            console.WriteLine();\r\n            console.WriteLine(commandFormatString, helpCommand, \"For help with one of the above commands\");\r\n            console.WriteLine();\r\n        }\r\n\r\n        public static void ShowCommandHelp(ConsoleCommand selectedCommand, TextWriter console, bool skipExeInExpectedUsage = false)\r\n        {\r\n            var haveOptions = selectedCommand.GetActualOptions().Count > 0;\r\n\r\n            console.WriteLine();\r\n            console.WriteLine(\"'\" + selectedCommand.Command + \"' - \" + selectedCommand.OneLineDescription);\r\n            if (selectedCommand.Aliases != null && selectedCommand.Aliases.Count > 0)\r\n            {\r\n                console.WriteLine(\"Aliases:\");\r\n                foreach (string alias in selectedCommand.Aliases)\r\n                {\r\n                    console.WriteLine(\"  \" + alias);\r\n                }\r\n            }\r\n            console.WriteLine();\r\n\r\n            if (!string.IsNullOrEmpty(selectedCommand.LongDescription))\r\n            {\r\n                console.WriteLine(selectedCommand.LongDescription);\r\n                console.WriteLine();\r\n            }\r\n\r\n            console.Write(\"Expected usage:\");\r\n\r\n            if (!skipExeInExpectedUsage)\r\n            {\r\n                console.Write(\" \" + AppDomain.CurrentDomain.FriendlyName);\r\n            }\r\n\r\n            console.Write(\" \" + selectedCommand.Command);\r\n\r\n            if (haveOptions)\r\n                console.Write(\" <options> \");\r\n\r\n            console.WriteLine(selectedCommand.RemainingArgumentsHelpText);\r\n\r\n            if (haveOptions)\r\n            {\r\n                console.WriteLine(\"<options> available:\");\r\n                selectedCommand.GetActualOptions().WriteOptionDescriptions(console);\r\n            }\r\n            console.WriteLine();\r\n        }\r\n\r\n        public static void ShowParsedCommand(ConsoleCommand consoleCommand, TextWriter consoleOut)\r\n        {\r\n            if (!consoleCommand.TraceCommandAfterParse)\r\n            {\r\n                return;\r\n            }\r\n\r\n            var properties = consoleCommand.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance)\r\n                .Where(p => !consoleCommand.TraceCommandSkipProperties.Contains(p.Name));\r\n\r\n            var fields = consoleCommand.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance)\r\n                .Where(p => !consoleCommand.TraceCommandSkipProperties.Contains(p.Name));\r\n\r\n            Dictionary<string,string> allValuesToTrace = new Dictionary<string, string>();\r\n\r\n            foreach (var property in properties)\r\n            {\r\n                allValuesToTrace[property.Name] = MakeObjectReadable(property.GetValue(consoleCommand, new object[0]));\r\n            }\r\n\r\n            foreach (var field in fields)\r\n            {\r\n                allValuesToTrace[field.Name] = MakeObjectReadable(field.GetValue(consoleCommand));\r\n            }\r\n\r\n            consoleOut.WriteLine();\r\n\r\n            string introLine = String.Format(\"Executing {0}\", consoleCommand.Command);\r\n\r\n            if (string.IsNullOrEmpty(consoleCommand.OneLineDescription))\r\n                introLine = introLine + \":\";\r\n            else\r\n                introLine = introLine + \" (\" + consoleCommand.OneLineDescription + \"):\";\r\n\r\n            consoleOut.WriteLine(introLine);\r\n            \r\n            foreach(var value in allValuesToTrace.OrderBy(k => k.Key))\r\n                consoleOut.WriteLine(\"    \" + value.Key + \" : \" + value.Value);\r\n\r\n            consoleOut.WriteLine();\r\n        }\r\n\r\n        static string MakeObjectReadable(object value)\r\n        {\r\n            string readable;\r\n\r\n            if (value is System.Collections.IEnumerable && !(value is string))\r\n            {\r\n                readable = \"\";\r\n                var separator = \"\";\r\n\r\n                foreach (var member in (IEnumerable) value)\r\n                {\r\n                    readable += separator + MakeObjectReadable(member);\r\n                    separator = \", \";\r\n                }\r\n            }\r\n            else if (value != null)\r\n                readable = value.ToString();\r\n            else\r\n                readable = \"null\";\r\n            return readable;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole/Internal/ConsoleRedirectionDetection.cs",
    "content": "﻿namespace ManyConsole.Internal\r\n{\r\n    using System;\r\n\r\n    // implementation from http://stackoverflow.com/questions/3453220/how-to-detect-if-console-in-stdin-has-been-redirected\r\n\r\n    public interface IConsoleRedirectionDetection\r\n    {\r\n        bool IsOutputRedirected();\r\n        bool IsInputRedirected();\r\n        bool IsErrorRedirected();\r\n    }\r\n\r\n    public class ConsoleRedirectionDetection : IConsoleRedirectionDetection\r\n    {\r\n        public bool IsOutputRedirected()\r\n        {\r\n            return Console.IsOutputRedirected;\r\n        }\r\n        public bool IsInputRedirected()\r\n        {\r\n            return Console.IsInputRedirected;\r\n        }\r\n        public bool IsErrorRedirected()\r\n        {\r\n            return Console.IsErrorRedirected;\r\n        }\r\n\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole/Internal/ConsoleUtil.cs",
    "content": "﻿using System.Linq;\r\n\r\nnamespace ManyConsole.Internal\r\n{\r\n    public abstract class ConsoleUtil\r\n    {\r\n        public static void VerifyNumberOfArguments(string[] args, int? expectedArgumentCountMin, int? expectedArgumentCountMax)\r\n        {\r\n            if (expectedArgumentCountMin.HasValue && args.Count() < expectedArgumentCountMin.Value)\r\n                throw new ConsoleHelpAsException(\r\n                    string.Format(\"Invalid number of arguments-- expected {0} more.\", expectedArgumentCountMin.Value - args.Count()));\r\n\r\n            if (expectedArgumentCountMax.HasValue && args.Count() > expectedArgumentCountMax.Value)\r\n                throw new ConsoleHelpAsException(\"Extra parameters specified: \" + string.Join(\", \", args.Skip(expectedArgumentCountMax.Value).ToArray()));\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "ManyConsole/Internal/RequiredOptionRecord.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole.Internal\r\n{\r\n    public class RequiredOptionRecord\r\n    {\r\n        public string Name;\r\n        public bool WasIncluded;\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole/ManyConsole.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\r\n\r\n  <PropertyGroup>\r\n    <TargetFramework>netstandard2.0</TargetFramework>\r\n    <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>\r\n    <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>\r\n    <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>\r\n    <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>\r\n    <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>\r\n    <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>\r\n    <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>\r\n  </PropertyGroup>\r\n\r\n  <ItemGroup>\r\n    <PackageReference Include=\"Mono.Options\" Version=\"5.3.0.1\" />\r\n  </ItemGroup>\r\n\r\n</Project>\r\n"
  },
  {
    "path": "ManyConsole.Tests/Can_consume_variable_number_of_arguments.cs",
    "content": "﻿using NUnit.Framework;\nusing System.IO;\nusing System.Text;\n\nnamespace ManyConsole.Tests\n{\n    public class Can_consume_variable_number_of_arguments\n    {\n        [Test]\n        public void Expecting2CalledWith0()\n        {\n            var output = run_command_with_parameters(new[] { \"command1\" });\n            StringAssert.Contains(\"Invalid number of arguments-- expected 2 more\", output,\n                \"the output does not have an errorstring asking for 2 more parameters\");\n        }\n        [Test]\n        public void Expecting2CalledWith1()\n        {\n            var output = run_command_with_parameters(new[] { \"command1\", \"1\" });\n            StringAssert.Contains(\"Invalid number of arguments-- expected 1 more\", output,\n                \"the output does not have an errorstring asking for 1 more parameter\");\n        }\n        [Test]\n        public void Expecting2CalledWith2()\n        {\n            var output = run_command_with_parameters(new[] { \"command1\", \"1\", \"2\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command1:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void Expecting2CalledWith5()\n        {\n            var output = run_command_with_parameters(new[] { \"command1\", \"1\", \"2\", \"3\", \"4\", \"5\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command1:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith0()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\" });\n            StringAssert.Contains(\"Invalid number of arguments-- expected 2 more\", output,\n                \"the output does not have an errorstring asking for 2 more parameters\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith1()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\", \"1\" });\n            StringAssert.Contains(\"Invalid number of arguments-- expected 1 more\", output,\n                \"the output does not have an errorstring asking for 1 more parameter\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith2()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\", \"1\", \"2\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command2:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith4()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\", \"1\", \"2\", \"3\", \"4\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command2:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith5()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\", \"1\", \"2\", \"3\", \"4\", \"5\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command2:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void Expecting2To5CalledWith6()\n        {\n            var output = run_command_with_parameters(new[] { \"command2\", \"1\", \"2\", \"3\", \"4\", \"5\", \"6\" });\n            StringAssert.Contains(\"Extra parameters specified: 6\", output,\n                \"the output does not have an errorstring iundicating superfluous parameter(s)\");\n        }\n\n        public class CommandWithAtLeast2Parameters : ConsoleCommand\n        {\n            public CommandWithAtLeast2Parameters()\n            {\n                this.IsCommand(\"command1\");\n                HasAdditionalArgumentsBetween(2, null, \"\");\n            }\n\n            public override int Run(string[] remainingArguments)\n            {\n                return 0;\n            }\n        }\n\n        public class CommandWith2To5Parameters : ConsoleCommand\n        {\n            public CommandWith2To5Parameters()\n            {\n                this.IsCommand(\"command2\");\n                HasAdditionalArgumentsBetween(2, 5, \"\");\n            }\n\n            public override int Run(string[] remainingArguments)\n            {\n                return 0;\n            }\n        }\n\n        private string run_command_with_parameters(string[] parameters)\n        {\n            StringBuilder sb = new StringBuilder();\n            var sw = new StringWriter(sb);\n\n            ConsoleCommandDispatcher.DispatchCommand(\n                new ConsoleCommand[]\n                {\n                    new CommandWithAtLeast2Parameters(),\n                    new CommandWith2To5Parameters()\n                },\n                parameters,\n                sw);\n\n            return sb.ToString();\n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsole.Tests/Can_define_commands_with_aliases.cs",
    "content": "﻿using NUnit.Framework;\nusing System.IO;\nusing System.Text;\n\nnamespace ManyConsole.Tests\n{\n    public class Can_define_commands_with_aliases\n    {\n        [Test]\n        public void CommandWithTwoAliasesDirect()\n        {\n            var output = run_command_with_parameters(new[] { \"command\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void CommandWithTwoAliasesFirst()\n        {\n            var output = run_command_with_parameters(new[] { \"--command\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n        [Test]\n        public void CommandWithTwoAliasesSecond()\n        {\n            var output = run_command_with_parameters(new[] { \"-c\" });\n            StringAssert.AreEqualIgnoringCase(\"Executing command:\", output.Trim(),\n                \"unexpected output for valid command\");\n        }\n\n        public class CommandWith2Aliases: ConsoleCommand\n        {\n            public CommandWith2Aliases()\n            {\n                this.IsCommand(\"command\");\n                this.HasAlias(\"--command\");\n                this.HasAlias(\"-c\");\n            }\n\n            public override int Run(string[] remainingArguments)\n            {\n                return 0;\n            }\n        }\n\n        private string run_command_with_parameters(string[] parameters)\n        {\n            StringBuilder sb = new StringBuilder();\n            var sw = new StringWriter(sb);\n\n            ConsoleCommandDispatcher.DispatchCommand(\n                new ConsoleCommand[]\n                {\n                    new CommandWith2Aliases()\n                },\n                parameters,\n                sw);\n\n            return sb.ToString();\n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsole.Tests/Can_have_required_parameters.cs",
    "content": "﻿using System.IO;\r\nusing NUnit.Framework;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Can_have_required_parameters\r\n    {\r\n        [Test]\r\n        public void CommandRunWithoutParameters()\r\n        {\r\n            string result = null;\r\n            var noopCommand = new TestCommand()\r\n                .IsCommand(\"required\", \"This command has a required parameter\")\r\n                .HasOption(\"ignored=\", \"An extra option.\", v => { })\r\n                .HasRequiredOption(\"f|foo=\", \"This foo to use.\", v => result = v)\r\n                .SkipsCommandSummaryBeforeRunning();\r\n\r\n            when_the_command_is_run_without_the_parameter_then_the_console_gives_error_output(noopCommand, \"foo\");\r\n            //            when(\"that command is ran with the parameter\", delegate ()\r\n            StringWriter output = new StringWriter();\r\n\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(noopCommand,\r\n                new[] { \"required\", \"-foo\", \"bar\" }, output);\r\n\r\n            Assert.AreEqual(0, exitCode,\r\n                \"the exit code does not indicates the call succeeded\");\r\n\r\n            Assert.AreEqual(\"bar\", result,\r\n                \"the option is not received\");\r\n        }\r\n        [Test]\r\n        public void CommandRunWithIntegerParameters()\r\n        {\r\n            int result = 0;\r\n            var requiresInteger = new TestCommand()\r\n                .IsCommand(\"parse-int\")\r\n                .HasRequiredOption<int>(\"value=\", \"The integer value\", v => result = v);\r\n\r\n            when_the_command_is_run_without_the_parameter_then_the_console_gives_error_output(requiresInteger, \"value\");\r\n\r\n            //when(\"the command is passed an integer value\", () =>\r\n            StringWriter output = new StringWriter();\r\n\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(requiresInteger,\r\n                new[] { \"parse-int\", \"-value\", \"42\" }, output);\r\n\r\n            Assert.AreEqual(0, exitCode,\r\n                \"the exit code does not indicates the call succeeded\");\r\n\r\n            Assert.AreEqual(42, result,\r\n                \"the value is not received\");\r\n        }\r\n\r\n        void when_the_command_is_run_without_the_parameter_then_the_console_gives_error_output(ConsoleCommand command, string parameterName)\r\n        {\r\n            StringWriter output = new StringWriter();\r\n\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(command,new[] {command.Command}, output);\r\n\r\n            StringAssert.Contains(\"Missing option: \" + parameterName, output.ToString(),\r\n                \"the output does not indicates the parameter wasn't specified\");\r\n\r\n            Assert.AreEqual(-1, exitCode,\r\n                \"the exit code does not indicate the call failed\");\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/Can_modify_command_behavior_after_parsing_and_before_running.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Can_modify_command_behavior_after_parsing_and_before_running\r\n    {\r\n        public class OverridingCommand : ConsoleCommand\r\n        {\r\n            public OverridingCommand()\r\n            {\r\n                this.IsCommand(\"fail-me-maybe\");\r\n                this.HasOption<int>(\"n=\", \"number\", v => Maybe = v);\r\n            }\r\n\r\n            public int? Maybe;\r\n\r\n            public override int? OverrideAfterHandlingArgumentsBeforeRun(string[] remainingArguments)\r\n            {\r\n                return Maybe;\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return 0;\r\n            }\r\n        }\r\n\r\n        [Test]\r\n        public void ReturnCodeAndHalt()\r\n        {\r\n            var output = new StringWriter();\r\n            var command = new OverridingCommand();\r\n\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(command, new[] { \"/n\", \"123\" }, output);\r\n\r\n            Assert.AreEqual(123, exitCode, \"Exit code not 123 as expected\");\r\n            Assert.That(String.IsNullOrEmpty(output.ToString()), \"Output is not empty\");\r\n        }\r\n\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/Can_overwrite_options_property.cs",
    "content": "﻿using System;\r\nusing System.IO;\r\nusing System.Text;\r\nusing Mono.Options;\r\nusing NUnit.Framework;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Can_overwrite_options_property \r\n    {\r\n        public class OverwriteCommand : ConsoleCommand\r\n        {\r\n            public int A;\r\n            public int B;\r\n            public string Result;\r\n\r\n            public OverwriteCommand()\r\n            {\r\n                this.IsCommand(\"foo\", \"bar\");\r\n                this.HasOption<int>(\"A=\", \"first value\", v => A = v);\r\n                this.SkipsCommandSummaryBeforeRunning();\r\n\r\n                var optionSet = new OptionSet();\r\n                this.Options = optionSet;\r\n                optionSet.Add<int>(\"B=\", \"second option\", v => B = v);\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                Result = A + \",\" + B;\r\n                return 0;\r\n            }\r\n        }\r\n        [Test]\r\n        public void DoNotLooseOtherArgumentsWhenPropertyOptionsAreOverwritten()\r\n        {\r\n            var command = new OverwriteCommand();\r\n            var consoleOutput = new StringBuilder();\r\n\r\n            var outputCode = ConsoleCommandDispatcher.DispatchCommand(\r\n                command,\r\n                new[] { \"/A\", \"1\", \"/B\", \"2\" },\r\n                new StringWriter(consoleOutput));\r\n\r\n            Assert.That(String.IsNullOrEmpty(consoleOutput.ToString()), \"Console output is not empty\");\r\n            Assert.AreEqual(0, outputCode, \"Output is not zero\");\r\n            StringAssert.AreEqualIgnoringCase(\"1,2\", command.Result);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/Can_verify_number_of_arguments_passed_to_command.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System.IO;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Can_verify_number_of_arguments_passed_to_command\r\n    {\r\n        [Test]\r\n        public void Expecting5CalledWith0()\r\n        {\r\n            var output = run_command_with_parameters(new[] { \"command\" });\r\n            StringAssert.Contains(\"Invalid number of arguments-- expected 5 more.\", output,\r\n                \"the output does not have an errorstring asking for 5 parameters\");\r\n        }\r\n        [Test]\r\n        public void Expecting5CalledWith8()\r\n        {\r\n            var output = run_command_with_parameters(new[] { \"command\", \"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\" });\r\n            StringAssert.Contains(\"Extra parameters specified: 6, 7, 8\", output,\r\n                \"the output does not have an errorstring indicating the extra parameters\");\r\n        }\r\n        [Test]\r\n        public void Expecting5CalledWith5()\r\n        {\r\n            var output = run_command_with_parameters(new[] { \"command\", \"1\", \"2\", \"3\", \"4\", \"5\" });\r\n            StringAssert.AreEqualIgnoringCase(\"Executing command:\", output.Trim(),\r\n                \"unexpected output for valid command\");\r\n        }\r\n\r\n        public class CommandWith5Parameters : ConsoleCommand\r\n        {\r\n            public CommandWith5Parameters()\r\n            {\r\n                this.IsCommand(\"command\");\r\n                HasAdditionalArguments(5);\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return 0;\r\n            }\r\n        }\r\n\r\n        private string run_command_with_parameters(string[] parameters)\r\n        {\r\n            StringBuilder sb = new StringBuilder();\r\n            var sw = new StringWriter(sb);\r\n\r\n            ConsoleCommandDispatcher.DispatchCommand(\r\n                new ConsoleCommand[]\r\n                {\r\n                    new CommandWith5Parameters()\r\n                },\r\n                parameters,\r\n                sw);\r\n\r\n            return sb.ToString();\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/ConsoleModeCommandSpecs/StatusEchoCommand.cs",
    "content": "﻿using System;\r\n\r\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\r\n{\r\n    public class StatusEchoCommand : ConsoleCommand\r\n    {\r\n        public static int RunCount = 0;\r\n\r\n        public StatusEchoCommand()\r\n        {\r\n            this.IsCommand(\"echo-status\", \"Returns a particular status code\");\r\n            this.HasRequiredOption(\"s=\", \"Status code to return\", v => StatusCode = Int32.Parse(v));\r\n        }\r\n\r\n        public int StatusCode;\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            RunCount++;\r\n            return StatusCode;\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "ManyConsole.Tests/Console_interface_is_simplified_when_there_is_only_one_command.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System.IO;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Console_interface_is_simplified_when_there_is_only_one_command\r\n    {\r\n        private const int Success = 999;\r\n\r\n        public class ExampleCommand : ConsoleCommand\r\n        {\r\n            public ExampleCommand()\r\n            {\r\n                this.IsCommand(\"Example\");\r\n                this.HasOption(\"f|foo=\", \"This foo to use.\", v => Foo = v);\r\n                this.SkipsCommandSummaryBeforeRunning();\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return Success;\r\n            }\r\n\r\n            public string Foo { get; set; }\r\n        }\r\n\r\n        [Test]\r\n        public void NoParametersSpecified()\r\n        {\r\n            var exampleCommand = new ExampleCommand();\r\n\r\n            var output = new StringWriter();\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(exampleCommand, new string[0], output);\r\n\r\n            then_the_command_runs_without_tracing_parameter_information(output, exitCode);\r\n\r\n            Assert.IsNull(exampleCommand.Foo);\r\n        }\r\n        [Test]\r\n        public void OnlyCommandIsSpecified()\r\n        {\r\n            var exampleCommand = new ExampleCommand();\r\n\r\n            var output = new StringWriter();\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(exampleCommand, new[] { \"Example\" }, output);\r\n\r\n            then_the_command_runs_without_tracing_parameter_information(output, exitCode);\r\n\r\n            Assert.IsNull(exampleCommand.Foo);\r\n        }\r\n        [Test]\r\n        public void OnlyParameterIsNotCommand()\r\n        {\r\n            var exampleCommand = new ExampleCommand();\r\n\r\n            var output = new StringWriter();\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(exampleCommand, new[] { \"/f=bar\" }, output);\r\n\r\n            then_the_command_runs_without_tracing_parameter_information(output, exitCode);\r\n\r\n            StringAssert.AreEqualIgnoringCase(\"bar\", exampleCommand.Foo);\r\n        }\r\n        [Test]\r\n        public void CommandAndParameterSpecified()\r\n        {\r\n            var exampleCommand = new ExampleCommand();\r\n\r\n            var output = new StringWriter();\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(exampleCommand, new[] { \"Example\", \"/f=bar\" }, output);\r\n\r\n            then_the_command_runs_without_tracing_parameter_information(output, exitCode);\r\n\r\n            StringAssert.AreEqualIgnoringCase(\"bar\", exampleCommand.Foo);\r\n        }\r\n        private void then_the_command_runs_without_tracing_parameter_information(StringWriter output, int exitCode)\r\n        {\r\n            Assert.That(string.IsNullOrEmpty(output.ToString().Trim()),\r\n                \"the output is not empty\");\r\n            Assert.AreEqual(Success, exitCode);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/ManyConsole.Tests.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\r\n\r\n  <PropertyGroup>\r\n    <TargetFramework>netcoreapp2.2</TargetFramework>\r\n\r\n    <IsPackable>false</IsPackable>\r\n\r\n    <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>\r\n    <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>\r\n    <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>\r\n    <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>\r\n    <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>\r\n    <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>\r\n    <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>\r\n  </PropertyGroup>\r\n\r\n  <ItemGroup>\r\n    <PackageReference Include=\"Castle.Core\" Version=\"4.4.0\" />\r\n    <PackageReference Include=\"FakeItEasy\" Version=\"5.1.1\" />\r\n    <PackageReference Include=\"Mono.Options\" Version=\"5.3.0.1\" />\r\n    <PackageReference Include=\"nunit\" Version=\"3.11.0\" />\r\n    <PackageReference Include=\"NUnit3TestAdapter\" Version=\"3.13.0\" />\r\n    <PackageReference Include=\"Microsoft.NET.Test.Sdk\" Version=\"16.0.1\" />\r\n    <PackageReference Include=\"PowerAssert\" Version=\"1.0.85\" />\r\n  </ItemGroup>\r\n\r\n  <ItemGroup>\r\n    <ProjectReference Include=\"..\\ManyConsole\\ManyConsole.csproj\" />\r\n  </ItemGroup>\r\n\r\n</Project>\r\n"
  },
  {
    "path": "ManyConsole.Tests/Multiple_dispatch_calls_dont_interfere_with_each_other.cs",
    "content": "﻿using System.IO;\r\nusing Mono.Options;\r\nusing NUnit.Framework;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Multiple_dispatch_calls_dont_interfere_with_each_other\r\n    {\r\n        [Test]\r\n        public void RepeatedlyDispatchingCommand()\r\n        {\r\n            var trace = new StringWriter();\r\n\r\n            ConsoleCommandDispatcher.DispatchCommand(SomeProgram.GetCommands(trace), new[] { \"move\", \"-x\", \"1\", \"-y\", \"2\" }, new StringWriter());\r\n            ConsoleCommandDispatcher.DispatchCommand(SomeProgram.GetCommands(trace), new[] { \"move\", \"-x\", \"3\" }, new StringWriter());\r\n            ConsoleCommandDispatcher.DispatchCommand(SomeProgram.GetCommands(trace), new[] { \"move\", \"-y\", \"4\" }, new StringWriter());\r\n            ConsoleCommandDispatcher.DispatchCommand(SomeProgram.GetCommands(trace), new[] { \"move\" }, new StringWriter());\r\n\r\n            // all parameters are evaluated independently\r\n            MyStringAssert.ContainsInOrder(trace.ToString(),\r\n                        \"You walk to 1, 2 and find a maze of twisty little passages, all alike.\",\r\n                        \"You walk to 3, 0 and find a maze of twisty little passages, all alike.\",\r\n                        \"You walk to 0, 4 and find a maze of twisty little passages, all alike.\",\r\n                        \"You walk to 0, 0 and find a maze of twisty little passages, all alike.\"\r\n                    );            \r\n        }\r\n\r\n        public class SomeProgram\r\n        {\r\n            public static CoordinateCommand[] GetCommands(StringWriter trace)\r\n            {\r\n                return new[]\r\n            {\r\n                new CoordinateCommand(trace)    \r\n            };\r\n            }\r\n        }\r\n\r\n        public class CoordinateCommand : ConsoleCommand\r\n        {\r\n            readonly TextWriter _recorder;\r\n\r\n            public CoordinateCommand(TextWriter recorder)\r\n            {\r\n                _recorder = recorder;\r\n\r\n                this.IsCommand(\"move\");\r\n                Options = new OptionSet()\r\n                {\r\n                    {\"x=\", \"Coordinate along the x axis.\", v => X = int.Parse(v)},\r\n                    {\"y=\", \"Coordinate along the y axis.\", v => Y = int.Parse(v)},\r\n                };\r\n            }\r\n\r\n            public int X;\r\n            public int Y;\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                _recorder.WriteLine(\"You walk to {0}, {1} and find a maze of twisty little passages, all alike.\", X, Y);\r\n                return 0;\r\n            }\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/MyStringAssert.cs",
    "content": "﻿\nusing NUnit.Framework;\n\nnamespace ManyConsole.Tests\n{\n    static class MyStringAssert\n    {\n        public static void ContainsInOrder(string actual, params string[] args)\n        {\n            int i = 0;\n            bool result = true;\n            foreach (var s in args)\n            {\n                int pos = actual.IndexOf(s);\n                if (pos < i)\n                    result = false;\n                else\n                    i = pos + 1;                \n            }\n            Assert.IsTrue(result);\n        }\n\n    }\n}\n"
  },
  {
    "path": "ManyConsole.Tests/Show_useful_error_information.cs",
    "content": "﻿using System.ComponentModel;\r\nusing System.IO;\r\nusing NUnit.Framework;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class Show_useful_error_information\r\n    {\r\n        string TextWithinExpectedUsageHelp = \"Expected usage:\";\r\n\r\n        [Test]\r\n        public void UserTypesInputRejectedByNDeskOptions()\r\n        {\r\n            var trace = new StringWriter();\r\n\r\n            var lastError = ConsoleCommandDispatcher.DispatchCommand(\r\n                    new ConsoleCommand[] { new SomeCommandWithAParameter() },\r\n                    new[] { \"some\", \"/a\" },\r\n                    trace);\r\n\r\n            // the error output gives the error message and typical help\r\n            Assert.AreNotEqual(0, lastError);\r\n\r\n            StringAssert.Contains(\"Missing required value for option '/a'\", trace.ToString());\r\n            StringAssert.Contains(TextWithinExpectedUsageHelp, trace.ToString());\r\n\r\n            StringAssert.DoesNotContain(\"ndesk.options\", trace.ToString().ToLower());\r\n            StringAssert.DoesNotContain(\"exception\", trace.ToString().ToLower());\r\n    \r\n            // a command causes other unexpected errors\r\n            Assert.Throws<InvalidAsynchronousStateException>(() => ConsoleCommandDispatcher.DispatchCommand(\r\n                        new ConsoleCommand[] { new SomeCommandThrowingAnException(), },\r\n                        new string[0],\r\n                        trace));\r\n        }\r\n\r\n        class SomeCommandWithAParameter : ConsoleCommand\r\n        {\r\n            public SomeCommandWithAParameter()\r\n            {\r\n                this.IsCommand(\"some\");\r\n                this.HasOption(\"a=\", \"a parameter\", v => {});\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return 0;\r\n            }\r\n        }\r\n        \r\n        class SomeCommandThrowingAnException : ConsoleCommand\r\n        {\r\n            public SomeCommandThrowingAnException()\r\n            {\r\n                this.IsCommand(\"some\");\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                throw new InvalidAsynchronousStateException();\r\n            }\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/TestCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class TestCommand : ConsoleCommand\r\n    {\r\n        public Func<int> Action = delegate { return 0; };\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            return Action();\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/abstract_commands_arent_loaded.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System.Linq;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class abstract_commands_arent_loaded\r\n    {\r\n        public abstract class AbstractCommand : ConsoleCommand\r\n        {\r\n        }\r\n\r\n        public abstract class AnotherAbstractCommand : AbstractCommand\r\n        {\r\n            public AnotherAbstractCommand() {}\r\n        }\r\n\r\n        public class NonabstractCommand : AnotherAbstractCommand\r\n        {\r\n            public NonabstractCommand()\r\n            {\r\n                this.IsCommand(\"NonabstractCommand\");\r\n            }\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return 0;\r\n            }\r\n        }\r\n\r\n        [Test]\r\n        public void AbstractCommandArentLoaded()\r\n        {\r\n            var commands = ConsoleCommandDispatcher.FindCommandsInSameAssemblyAs(this.GetType());\r\n\r\n            Assert.IsTrue(commands.Any(c => c.GetType() == typeof(NonabstractCommand)), \"No non-abstract commands are found.\");\r\n            Assert.IsFalse(commands.Any(c => c.GetType() == typeof(AbstractCommand)), \"AbstractCommands present - should be ignored.\");\r\n            Assert.IsFalse(commands.Any(c => c.GetType() == typeof(AnotherAbstractCommand)), \"AnotherAbstractCommand present - should be ignored.\");\r\n        }\r\n\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/lets_user_browse_command_help.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n\r\n    public class lets_user_browse_command_help\r\n    {\r\n        [Test]\r\n        public void TestCommandDescriptions()\r\n        {\r\n            var firstcommand = new TestCommand().IsCommand(\"command-a\", \"oneline description a\");\r\n            var secondCommand = new TestCommand().IsCommand(\"command-b\", \"oneline description b\");\r\n\r\n            var commands = new ConsoleCommand[]\r\n            {\r\n                firstcommand,\r\n                secondCommand\r\n            }.ToList();\r\n\r\n            var writer = new StringWriter();\r\n\r\n            WhenTheUserDoesNotSpecifyACommandThenShowAvailableCommands(commands, writer, firstcommand, secondCommand, new string[0]);\r\n            WhenTheUserDoesNotSpecifyACommandThenShowAvailableCommands(commands, writer, firstcommand, secondCommand, new [] { \"help\"});\r\n\r\n            ShouldShowHelpWhenRequested(commands, new string[] { \"command-c\", \"/?\" });\r\n            ShouldShowHelpWhenRequested(commands, new string[] { \"help\", \"command-c\" });\r\n        }\r\n\r\n        private void WhenTheUserDoesNotSpecifyACommandThenShowAvailableCommands(List<ConsoleCommand> commands, StringWriter writer,\r\n                                                                                ConsoleCommand firstcommand,\r\n                                                                                ConsoleCommand secondCommand, string[] arguments)\r\n        {\r\n            // when the user does not specify a command\r\n            ConsoleCommandDispatcher.DispatchCommand(commands, arguments, writer);\r\n\r\n            // then the output contains a list of available commands\r\n            var output = writer.ToString();\r\n\r\n            MyStringAssert.ContainsInOrder(output, firstcommand.Command,\r\n                    firstcommand.OneLineDescription,\r\n                    secondCommand.Command,\r\n                    secondCommand.OneLineDescription);\r\n        }\r\n\r\n        private void ShouldShowHelpWhenRequested(List<ConsoleCommand> commands, string[] consoleArguments)\r\n        {\r\n            var writer = new StringWriter();\r\n\r\n            // when we call a command, asking for help\r\n            var commandC = new TestCommand()\r\n                .IsCommand(\"command-c\", \"one line description for C\")\r\n                .HasLongDescription(\r\n@\"Lorem ipsum dolor sit amet, consectetur adipiscing elit,\r\nsed do eiusmod tempor incididunt ut labore et dolore magna\r\naliqua. Ut enim ad minim veniam, quis nostrud exercitation\r\nullamco laboris nisi ut aliquip ex ea commodo consequat.\r\nDuis aute irure dolor in reprehenderit in voluptate velit\r\nesse cillum dolore eu fugiat nulla pariatur. Excepteur sint\r\noccaecat cupidatat non proident, sunt in culpa qui officia\r\ndeserunt mollit anim id est laborum.\")\r\n                .HasAdditionalArguments(0, \"<remaining> <args>\")\r\n                .HasOption(\"o|option=\", \"option description\", v => { });\r\n\r\n            commands.Add(commandC);\r\n\r\n            var exitCode = ConsoleCommandDispatcher.DispatchCommand(commands, consoleArguments, writer);\r\n\r\n            // then the output contains a all help available for that command\r\n            var output = writer.ToString();\r\n            MyStringAssert.ContainsInOrder(output,\r\n                commandC.Command,\r\n                commandC.OneLineDescription,\r\n                commandC.LongDescription,\r\n                commandC.RemainingArgumentsHelpText,\r\n                \"-o\",\r\n                \"--option\",\r\n                \"option description\");\r\n                \r\n            Assert.AreEqual(-1, exitCode);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.Tests/show_useful_command_summary.cs",
    "content": "﻿using NUnit.Framework;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Text;\r\n\r\nnamespace ManyConsole.Tests\r\n{\r\n    public class show_useful_command_summary\r\n    {\r\n        class SomeCommand : ConsoleCommand\r\n        {\r\n            public SomeCommand()\r\n            {\r\n                this.IsCommand(\"thecommand\", \"One-line description\");\r\n                PropertyB = \"def\";\r\n            }\r\n\r\n            public string FieldA = \"abc\";\r\n            public string PropertyB { get; set; }\r\n            public int? PropertyC { get; set; }\r\n            public IEnumerable<int>  PropertyD = new int[] { 1,2,3 };\r\n\r\n            public override int Run(string[] remainingArguments)\r\n            {\r\n                return 0;\r\n            }\r\n        }\r\n\r\n        [Test]\r\n        public void RunSimpleCommand()\r\n        {\r\n            StringBuilder result = new StringBuilder();\r\n            var sw = new StringWriter(result);\r\n\r\n            ConsoleCommandDispatcher.DispatchCommand(\r\n                new ConsoleCommand[]\r\n                {\r\n                    new SomeCommand()\r\n                },\r\n                new string[] { \"thecommand\" },\r\n                sw);\r\n\r\n            // the output includes a summary of the command\r\n            StringAssert.AreEqualIgnoringCase(@\"\r\nExecuting thecommand (One-line description):\r\n    FieldA : abc\r\n    PropertyB : def\r\n    PropertyC : null\r\n    PropertyD : 1, 2, 3\r\n\r\n\", result.ToString());\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "ManyConsole.nuspec",
    "content": "<?xml version=\"1.0\"?>\n<package>\n  <metadata>\n    <id>ManyConsole</id>\n    <version>$version$</version>\n    <authors>Frank Schwieterman</authors>\n    <owners>fschwiet</owners>\n    <license type=\"file\">LICENSE.txt</license>\n    <projectUrl>https://github.com/fschwiet/ManyConsole/</projectUrl>\n    <requireLicenseAcceptance>false</requireLicenseAcceptance>\n    <description>A library for writing console applications.  Extends Mono.Options to support separate commands from one console application.</description>\n    <releaseNotes>.NET standard 2.0 support added in ManyConsole 2.0.  ConsoleModeCommand was split to separte DLL not supported for .NET standard 2.0  </releaseNotes>\n    <copyright>Copyright 2019</copyright>\n    <tags>mono.options command-line console</tags>\n    <dependencies>\n      <dependency id=\"Mono.Options\" version=\"5.3\" />\n    </dependencies>\n    <summary>Easily mix commands for a console application.</summary>\n  </metadata>\n  <files>\n    <file src=\"..\\ManyConsole\\ManyConsole.dll\" target=\"lib\\netstandard2.0\\ManyConsole.dll\" />\n    <file src=\"..\\ManyConsole\\ManyConsole.pdb\" target=\"lib\\netstandard2.0\\ManyConsole.pdb\" />\n    <file src=\"..\\ManyConsole\\ManyConsole.dll\" target=\"lib\\net46\\ManyConsole.dll\" />\n    <file src=\"..\\ManyConsole\\ManyConsole.pdb\" target=\"lib\\net46\\ManyConsole.pdb\" />\n    <file src=\"..\\ManyConsoleModeCommand\\ManyConsoleModeCommand.dll\" target=\"lib\\net46\\ManyConsoleModeCommand.dll\" />\n    <file src=\"..\\ManyConsoleModeCommand\\ManyConsoleModeCommand.pdb\" target=\"lib\\net46\\ManyConsoleModeCommand.pdb\" />\n    <file src=\"..\\..\\LICENSE.TXT\" target=\"LICENSE.txt\"/>\n  </files>\n</package>"
  },
  {
    "path": "ManyConsole.sln",
    "content": "﻿\r\nMicrosoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio Version 16\r\nVisualStudioVersion = 16.0.28729.10\r\nMinimumVisualStudioVersion = 10.0.40219.1\r\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"ManyConsole\", \"ManyConsole\\ManyConsole.csproj\", \"{18205C5D-97C7-4314-94CC-8DCF0BCA0673}\"\r\nEndProject\r\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"SampleConsole\", \"SampleConsole\\SampleConsole.csproj\", \"{4ACACC34-FEC3-432C-8EC1-4D07586EC948}\"\r\nEndProject\r\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \"Solution Items\", \"Solution Items\", \"{372EBBAA-5A4F-450E-BA4E-AEC14225C999}\"\r\n\tProjectSection(SolutionItems) = preProject\r\n\t\tdefault.ps1 = default.ps1\r\n\t\treadme.md = readme.md\r\n\tEndProjectSection\r\nEndProject\r\nProject(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\") = \".nuget\", \".nuget\", \"{D7FAA0BE-0F38-472C-945B-25CAFAD5A8C0}\"\r\n\tProjectSection(SolutionItems) = preProject\r\n\t\t.nuget\\packages.config = .nuget\\packages.config\r\n\tEndProjectSection\r\nEndProject\r\nProject(\"{9A19103F-16F7-4668-BE54-9A1E7A4F7556}\") = \"ManyConsole.Tests\", \"ManyConsole.Tests\\ManyConsole.Tests.csproj\", \"{FE40442C-3D7F-4595-BD45-D50243165DDE}\"\r\nEndProject\r\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"ManyConsoleModeCommand\", \"ManyConsoleModeCommand\\ManyConsoleModeCommand.csproj\", \"{B983A1F4-5A01-494A-969A-72FD67FCC49A}\"\r\nEndProject\r\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"ManyConsoleModeCommand.Test\", \"ManyConsoleModeCommand.Test\\ManyConsoleModeCommand.Test.csproj\", \"{90F82204-8871-4AB8-A06E-445CFD55BE02}\"\r\nEndProject\r\nGlobal\r\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\r\n\t\tDebug|Any CPU = Debug|Any CPU\r\n\t\tDebug|Mixed Platforms = Debug|Mixed Platforms\r\n\t\tDebug|x86 = Debug|x86\r\n\t\tRelease|Any CPU = Release|Any CPU\r\n\t\tRelease|Mixed Platforms = Release|Mixed Platforms\r\n\t\tRelease|x86 = Release|x86\r\n\tEndGlobalSection\r\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Debug|x86.ActiveCfg = Debug|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Release|Mixed Platforms.Build.0 = Release|Any CPU\r\n\t\t{90DB8534-C471-47CF-999D-BE7A86070979}.Release|x86.ActiveCfg = Release|Any CPU\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Debug|Any CPU.ActiveCfg = Debug|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Debug|Mixed Platforms.ActiveCfg = Debug|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Debug|Mixed Platforms.Build.0 = Debug|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Debug|x86.ActiveCfg = Debug|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Debug|x86.Build.0 = Debug|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Release|Any CPU.ActiveCfg = Release|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Release|Mixed Platforms.ActiveCfg = Release|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Release|Mixed Platforms.Build.0 = Release|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Release|x86.ActiveCfg = Release|x86\r\n\t\t{4ACACC34-FEC3-432C-8EC1-4D07586EC948}.Release|x86.Build.0 = Release|x86\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|x86.ActiveCfg = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Debug|x86.Build.0 = Debug|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|Mixed Platforms.Build.0 = Release|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|x86.ActiveCfg = Release|Any CPU\r\n\t\t{FE40442C-3D7F-4595-BD45-D50243165DDE}.Release|x86.Build.0 = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|x86.ActiveCfg = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Debug|x86.Build.0 = Debug|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|Mixed Platforms.Build.0 = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|x86.ActiveCfg = Release|Any CPU\r\n\t\t{B983A1F4-5A01-494A-969A-72FD67FCC49A}.Release|x86.Build.0 = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|x86.ActiveCfg = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Debug|x86.Build.0 = Debug|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|Mixed Platforms.Build.0 = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|x86.ActiveCfg = Release|Any CPU\r\n\t\t{90F82204-8871-4AB8-A06E-445CFD55BE02}.Release|x86.Build.0 = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|x86.ActiveCfg = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Debug|x86.Build.0 = Debug|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|Mixed Platforms.Build.0 = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|x86.ActiveCfg = Release|Any CPU\r\n\t\t{18205C5D-97C7-4314-94CC-8DCF0BCA0673}.Release|x86.Build.0 = Release|Any CPU\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 = {AFDCFEE6-A661-4100-B8D1-B8FF73B97390}\r\n\tEndGlobalSection\r\nEndGlobal\r\n"
  },
  {
    "path": "ManyConsoleModeCommand/ConsoleModeCommand.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing ManyConsole.Internal;\nusing Mono.Options;\n\nnamespace ManyConsole\n{\n    public class ConsoleModeCommand : ConsoleCommand\n    {\n        private readonly TextReader _inputStream;\n        private readonly TextWriter _outputStream;\n        IConsoleRedirectionDetection _redirectionDetector = new ConsoleRedirectionDetection();\n        public static string FriendlyContinuePrompt = \"Enter a command or 'x' to exit or '?' for help\";\n        readonly Func<IEnumerable<ConsoleCommand>> _commandSource;\n        private string _continuePrompt;\n\n        public ConsoleModeCommand(\n            TextWriter outputStream = null,\n            TextReader inputStream = null,\n            OptionSet options = null)\n            : this(() => new ConsoleCommand[0], outputStream, inputStream, null, options)\n        {\n            _commandSource = () => new ConsoleCommand[0];\n        }\n\n        [Obsolete(\"Its preferred to override methods on ConsoleModeCommand and use the shorter constructor.\")]\n        public ConsoleModeCommand(\n            Func<IEnumerable<ConsoleCommand>> commandSource,\n            TextWriter outputStream = null,\n            TextReader inputStream = null,\n            string friendlyContinueText = null,\n            OptionSet options = null)\n        {\n            _inputStream = inputStream ?? Console.In;\n            _outputStream = outputStream ?? Console.Out;\n\n            this.IsCommand(\"run-console\", \"Run in console mode, treating each line of console input as a command.\");\n\n            this.Options = options ?? this.Options;  //  added per request from https://github.com/fschwiet/ManyConsole/issues/7\n\n            _commandSource = () =>\n            {\n                var commands = commandSource();\n                return commands.Where(c => !(c is ConsoleModeCommand));  // don't cross the beams\n            };\n\n            _continuePrompt = friendlyContinueText ?? FriendlyContinuePrompt;\n        }\n\n        /// <summary>\n        /// Writes to the console to prompt the user for their next command.\n        /// Is skipped if commands are being ran without user interaction.\n        /// </summary>\n        public virtual void WritePromptForCommands()\n        {\n            if (!string.IsNullOrEmpty(_continuePrompt))\n                _outputStream.WriteLine(_continuePrompt);\n        }\n\n        /// <summary>\n        /// Runs to get the next available commands\n        /// </summary>\n        /// <returns></returns>\n        public virtual IEnumerable<ConsoleCommand> GetNextCommands()\n        {\n            return _commandSource();\n        }\n\n        public override int Run(string[] remainingArguments)\n        {\n            string[] args;\n\n            bool isInputRedirected = _redirectionDetector.IsInputRedirected();\n\n            if (!isInputRedirected)\n            {\n                WritePromptForCommands();\n            }\n\n            bool haveError = false;\n            string input = _inputStream.ReadLine();\n\n            while (!input.Trim().Equals(\"x\"))\n            {\n                if (input.Trim().Equals(\"?\"))\n                {\n                    ConsoleHelp.ShowSummaryOfCommands(GetNextCommands(), _outputStream);\n                }\n                else\n                {\n                    args = CommandLineParser.Parse(input);\n\n                    var result = ConsoleCommandDispatcher.DispatchCommand(GetNextCommands(), args, _outputStream, true);\n                    if (result != 0)\n                    {\n                        haveError = true;\n\n                        if (isInputRedirected)\n                            return result;\n                    }\n                }\n                \n                if (!isInputRedirected)\n                {\n                    _outputStream.WriteLine();\n\n                    if (!isInputRedirected)\n                    {\n                        WritePromptForCommands();\n                    }\n                }\n\n                input = _inputStream.ReadLine();\n            }\n\n            return haveError ? -1 : 0;\n        }\n\n        public void SetConsoleRedirectionDetection(IConsoleRedirectionDetection consoleRedirectionDetection)\n        {\n            _redirectionDetector = consoleRedirectionDetection;\n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsoleModeCommand/Internal/CommandLineParser.cs",
    "content": "﻿using System;\nusing System.Runtime.InteropServices;\n\nnamespace ManyConsole.Internal\n{\n    public static class CommandLineParser\n    {\n        /// <summary>\n        /// Splits a string in the same way that Windows splits up a command line into args \n        /// (i.e. identical to how this is implemented under the covers: http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx)\n        /// </summary>\n        /// <param name=\"commandLine\">a string containing command line arguments</param>\n        /// <returns></returns>\n        /// <remarks>taken from http://stackoverflow.com/q/298830/5351</remarks>\n        public static string[] Parse(string commandLine)\n        {\n            int argc;\n            var argv = CommandLineToArgvW(commandLine, out argc);\n            if (argv == IntPtr.Zero)\n                throw new System.ComponentModel.Win32Exception();\n            try\n            {\n                var args = new string[argc];\n                for (var i = 0; i < args.Length; i++)\n                {\n                    var p = Marshal.ReadIntPtr(argv, i * IntPtr.Size);\n                    args[i] = Marshal.PtrToStringUni(p);\n                }\n\n                return args;\n            }\n            finally\n            {\n                Marshal.FreeHGlobal(argv);\n            }\n        }\n\n\n        [DllImport(\"shell32.dll\", SetLastError = true)]\n        static extern IntPtr CommandLineToArgvW(\n            [MarshalAs(UnmanagedType.LPWStr)] string lpCmdLine, out int pNumArgs);\n    }\n}\n"
  },
  {
    "path": "ManyConsoleModeCommand/ManyConsoleModeCommand.csproj",
    "content": "﻿<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net461</TargetFramework>\n    <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>\n    <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>\n    <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>\n    <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>\n    <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>\n    <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>\n    <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"Mono.Options\" Version=\"5.3.0.1\" />\n  </ItemGroup>\n\n  <ItemGroup>\n    <ProjectReference Include=\"..\\ManyConsole\\ManyConsole.csproj\" />\n  </ItemGroup>\n\n</Project>"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/ConsoleModeCommandSpecification.cs",
    "content": "using System;\nusing System.IO;\nusing FakeItEasy;\nusing ManyConsole.Internal;\n\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\n{\n    public abstract class ConsoleModeCommandSpecification \n    {\n        public Func<int> RunConsoleModeCommand(string[] lines, bool inputIsFromUser, ConsoleCommand command, TextWriter outputWriter = null)\n        {\n            var injectedInputStream = new MemoryStream();\n\n            var fakeConsoleWriter = outputWriter ?? new StringWriter();\n            var fakeConsoleReader = new StreamReader(injectedInputStream);\n\n            var consoleModeCommand = new ConsoleModeCommand(\n                () => new ConsoleCommand[] {command},\n                fakeConsoleWriter,\n                fakeConsoleReader);\n\n            var injectedInput = new StreamWriter(injectedInputStream);\n\n            foreach (var line in lines)\n                injectedInput.WriteLine(line);\n            injectedInput.Flush();\n\n            injectedInputStream.Seek(0, SeekOrigin.Begin);\n\n            IConsoleRedirectionDetection redirectionDetection = A.Fake<IConsoleRedirectionDetection>();\n            consoleModeCommand.SetConsoleRedirectionDetection(redirectionDetection);\n            A.CallTo(() => redirectionDetection.IsInputRedirected()).Returns(!inputIsFromUser);\n            \n            return () =>\n                   ConsoleCommandDispatcher.DispatchCommand(new ConsoleCommand[] {consoleModeCommand}, new string[0],\n                                                            fakeConsoleWriter);\n        }\n    }\n}"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_fail_strictly_on_error_when_running_noninteractive.cs",
    "content": "﻿using NUnit.Framework;\n\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\n{\n    public class Should_fail_strictly_on_error_when_running_noninteractive : ConsoleModeCommandSpecification\n    {\n        [Test]\n        public void ConsoleInputFromUserSuccess()\n        {\n            StatusEchoCommand.RunCount = 0;\n\n            // multiple commands run successfully\n            var result = RunConsoleModeCommand(new string[]\n            {\n                \"echo-status -s 0\",\n                \"echo-status -s 0\",\n                \"echo-status -s 0\",\n                \"x\",\n            }, true, new StatusEchoCommand()).Invoke();\n\n            Assert.AreEqual(0, result);\n            Assert.AreEqual(3, StatusEchoCommand.RunCount);\n\n        }\n\n        [Test]\n        public void ConsoleInputFromUserFail()\n        {\n            StatusEchoCommand.RunCount = 0;\n\n            var result = RunConsoleModeCommand(new string[]\n            {\n                \"echo-status -s 0\",\n                \"echo-status -s 2\",\n                \"echo-status -s 0\",\n                \"x\",\n            }, true, new StatusEchoCommand()).Invoke();\n\n            Assert.AreEqual(-1, result);\n            Assert.AreEqual(3, StatusEchoCommand.RunCount);\n        }\n\n        [Test]\n        public void ConsoleInputNotFromUserSuccess()\n        {\n            StatusEchoCommand.RunCount = 0;\n\n            var result = RunConsoleModeCommand(new string[]\n                {\n                    \"echo-status -s 0\",\n                    \"echo-status -s 456\",\n                    \"echo-status -s 0\",\n                    \"x\",\n                }, false, new StatusEchoCommand()).Invoke();\n\n            Assert.AreEqual(456, result);\n            Assert.AreEqual(2, StatusEchoCommand.RunCount);\n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_give_user_prompt_in_interactive_mode.cs",
    "content": "﻿using NUnit.Framework;\nusing System.IO;\n\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\n{\n    public class Should_give_user_prompt_in_interactive_mode : ConsoleModeCommandSpecification\n    {\n        [Test]\n        public void ConsoleModeCommandIsRunningForTheUser()\n        {\n            var output = new StringWriter();\n            RunConsoleModeCommand(new string[]\n            {\n                    \"echo-status -s 0\",\n                    \"x\",\n            },\n            inputIsFromUser: true, command: new StatusEchoCommand(),\n            outputWriter: output).Invoke();\n\n            StringAssert.Contains(ConsoleModeCommand.FriendlyContinuePrompt,\n                output.ToString(),\n                \"the output does not contain a helpful prompt\");\n        }\n\n        [Test]\n        public void ConsoleModeCommandIsNotRunningForTheUser()\n        {\n            var output = new StringWriter();\n            RunConsoleModeCommand(new string[]\n                {\n                    \"echo-status -s 0\",\n                    \"x\",\n                },\n                inputIsFromUser: false, command: new StatusEchoCommand(),\n                outputWriter: output).Invoke();\n            StringAssert.DoesNotContain(ConsoleModeCommand.FriendlyContinuePrompt,\n                output.ToString(),\n                \"the output contains the helpful prompt\");\n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/Should_interpret_quotes_properly.cs",
    "content": "﻿using System.Collections.Generic;\nusing NUnit.Framework;\n\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\n{\n    public class Should_interpret_quotes_properly : ConsoleModeCommandSpecification\n    {\n        public class AccumulateStringsCommand : ConsoleCommand\n        {\n            public List<string> Marked = new List<string>();\n            public List<string> Unmarked = new List<string>(); \n\n            public AccumulateStringsCommand()\n            {\n                this.IsCommand(\"accumulate-strings\", \"Accumulates strings.\");\n                this.HasOption(\"s=\", \"A string.\", v => Marked.Add(v));\n                this.AllowsAnyAdditionalArguments(\"And more strings\");\n            }\n\n            public override int Run(string[] remainingArguments)\n            {\n                Unmarked.AddRange(remainingArguments);\n                return 0;\n            }\n        }\n\n        [Test]\n        public void CommandRunWithQuotedInput()\n        {\n            var command = new AccumulateStringsCommand();\n\n            RunConsoleModeCommand(new string[]\n                {\n                    \"accumulate-strings -s \\\"one two three\\\" \\\"four five six\\\"\",\n                    \"x\",\n                },\n                inputIsFromUser: true, command: command).Invoke();\n\n            Assert.That(command.Marked, Is.EquivalentTo(new[] { \"one two three\" }));\n            Assert.That(command.Unmarked, Is.EquivalentTo(new[] { \"four five six\" }));         \n        }\n    }\n}\n"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ConsoleModeCommandSpecs/StatusEchoCommand.cs",
    "content": "﻿using System;\n\nnamespace ManyConsole.Tests.ConsoleModeCommandSpecs\n{\n    public class StatusEchoCommand : ConsoleCommand\n    {\n        public static int RunCount = 0;\n\n        public StatusEchoCommand()\n        {\n            this.IsCommand(\"echo-status\", \"Returns a particular status code\");\n            this.HasRequiredOption(\"s=\", \"Status code to return\", v => StatusCode = Int32.Parse(v));\n        }\n\n        public int StatusCode;\n\n        public override int Run(string[] remainingArguments)\n        {\n            RunCount++;\n            return StatusCode;\n        }\n    }\n}"
  },
  {
    "path": "ManyConsoleModeCommand.Test/ManyConsoleModeCommand.Test.csproj",
    "content": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <TargetFramework>net461</TargetFramework>\n\n    <IsPackable>false</IsPackable>\n    <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>\n    <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>\n    <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>\n    <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>\n    <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>\n    <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>\n    <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>\n  </PropertyGroup>\n\n  <ItemGroup>\n    <PackageReference Include=\"FakeItEasy\" Version=\"5.1.1\" />\n    <PackageReference Include=\"Mono.Options\" Version=\"5.3.0.1\" />\n    <PackageReference Include=\"nunit\" Version=\"3.11.0\" />\n    <PackageReference Include=\"NUnit3TestAdapter\" Version=\"3.11.0\" />\n    <PackageReference Include=\"Microsoft.NET.Test.Sdk\" Version=\"15.9.0\" />\n  </ItemGroup>\n\n  <ItemGroup>\n    <ProjectReference Include=\"..\\ManyConsoleModeCommand\\ManyConsoleModeCommand.csproj\" />\n    <ProjectReference Include=\"..\\ManyConsole\\ManyConsole.csproj\" />\n  </ItemGroup>\n\n</Project>\n"
  },
  {
    "path": "RunTestsInGUI.ps1",
    "content": ".\\packages\\NUnit.Runners.2.6.1\\tools\\nunit.exe .\\ManyConsole.Tests\\bin\\Debug\\ManyConsole.Tests.dll"
  },
  {
    "path": "SampleConsole/DumpEmlFilesCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    public class DumpEmlFilesCommand : ConsoleCommand\r\n    {\r\n        public DumpEmlFilesCommand()\r\n        {\r\n            this.IsCommand(\"dump-eml\", \"Prints the contents of eml file(s).\");\r\n\r\n            this.HasOption(\"r|recursive\", \"Print files recursively\", v => Recursive = v != null);\r\n            this.HasOption(\"h|header=\", \"Mail header to include\", v => HeadersToPrint.Add(v));\r\n\r\n            HasAdditionalArguments(1, \"<fileOrDirectory>\");\r\n        }\r\n\r\n        public string Path;\r\n        public bool Recursive;\r\n        public List<string> HeadersToPrint = new List<string>();\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            Path = remainingArguments[0];\r\n\r\n            if (File.Exists(Path))\r\n            {\r\n                PrintEmlFile(Path);\r\n            }\r\n            else if (Directory.Exists(Path))\r\n            {\r\n                PrintEmlDirectory(Path);\r\n            }\r\n            else\r\n            {\r\n                throw new Exception(\"Could not find file or directory at \" + Path);\r\n            }\r\n\r\n            return 0;\r\n        }\r\n\r\n        private void PrintEmlDirectory(string directory)\r\n        {\r\n            var di = new DirectoryInfo(directory);\r\n\r\n            foreach(var entry in di.GetFileSystemInfos())\r\n            {\r\n                if (entry is FileInfo)\r\n                {\r\n                    PrintEmlFile(entry.FullName);\r\n                }\r\n                else if (Recursive && entry is DirectoryInfo)\r\n                {\r\n                    PrintEmlDirectory(entry.FullName);\r\n                }\r\n            }\r\n        }\r\n\r\n        private void PrintEmlFile(string filepath)\r\n        {\r\n            var mail = Sasa.Net.Mail.Message.ParseMailMessage(File.ReadAllText(filepath));\r\n\r\n            Console.WriteLine(\"SUBJECT:\\t{0}\", mail.Subject);\r\n            Console.WriteLine(\"FROM:\\t{0}\", mail.From);\r\n\r\n            foreach(var to in mail.To)\r\n            {\r\n                Console.WriteLine(\"TO:\\t{0}\", to);\r\n            }\r\n            \r\n            var headersPresent = mail.Headers.Keys.OfType<string>().Select(s => s.ToLower());\r\n\r\n            foreach (var header in HeadersToPrint)\r\n            {\r\n                if (headersPresent.Contains(header.ToLower()))\r\n                {\r\n                    Console.WriteLine(\"{0}:\\t{1}\", header.ToUpper(), mail.Headers[header]);\r\n                }\r\n            }\r\n\r\n            Console.WriteLine(\"BODY:\");\r\n            Console.WriteLine(mail.Body);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/EchoStringsCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    public class EchoStringsCommand : ConsoleCommand\r\n    {\r\n        public string comments;\r\n\r\n        public EchoStringsCommand()\r\n        {\r\n            IsCommand(\"echo\");\r\n            HasAlias(\"--echo\");\r\n\r\n            HasOption(\"c|comment=\",\r\n                           \"enter a string, maybe even delimited by double quotes, i.e. - \\\"See Matt's poorly written code\\\"\",\r\n                           v => comments = v);\r\n\r\n            AllowsAnyAdditionalArguments(\"<foo1> <foo2> <fooN> where N is a word\");\r\n        }\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            if (string.IsNullOrWhiteSpace(comments))\r\n            {\r\n                Console.WriteLine(\"You made no comment\");\r\n            }\r\n            else\r\n            {\r\n                Console.WriteLine(\"Your comment is: \" + comments);\r\n            }\r\n\r\n            Console.WriteLine(\"The remaining arguments were \" + Newtonsoft.Json.JsonConvert.SerializeObject(remainingArguments));\r\n\r\n            return 0;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/ExampleCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing ManyConsole;\r\nusing Mono.Options;\r\n\r\nnamespace MC.AX.DataUtility\r\n{\r\n    /// <summary>\r\n    /// Example implementation of a ManyConsole command-line argument parser (ConsoleCommand) class\r\n    /// </summary>\r\n    public class ExampleCommand : ConsoleCommand\r\n    {\r\n        /// <summary>\r\n        /// Configure command options and describe details in the class contructor\r\n        /// </summary>\r\n        /// <example>\r\n        /// Example usage:\r\n        /// \r\n        /// SampleConsole.exe example \"option one\" two -b -o \"optional argument\" -l=first -l=second -l \"the third option\"\r\n        /// \r\n        /// Expected output:\r\n        /// \r\n        /// Executing Example (Example implementation of a ManyConsole command-line argument\r\n        /// parser Command):\r\n        ///    Argument1 : option one\r\n        ///    Argument2 : two\r\n        ///    BooleanOption : True\r\n        ///    OptionalArgument1 : optional argument\r\n        ///    OptionalArgumentList : System.Collections.Generic.List`1[System.String]\r\n        ///\r\n        ///Called Example command - Argument1 = \"option one\" Argument2 = \"two\" BooleanOptio\r\n        ///n: True\r\n        ///List Item 0 = \"first\"\r\n        ///List Item 1 = \"second\"\r\n        ///List Item 2 = \"the third option\"\r\n        /// </example>\r\n        public ExampleCommand()\r\n        {\r\n            this.IsCommand(\"Example\", \"Example implementation of a ManyConsole command-line argument parser Command\");\r\n\r\n            this.HasOption(\"b|booleanOption\", \"Boolean flag option\", b => BooleanOption = true);\r\n\r\n            //  Setting .Options directly is the old way to do this, you may prefer to call the helper\r\n            //  method HasOption/HasRequiredOption.\r\n            Options = new OptionSet()\r\n            {\r\n                {\"l|list=\", \"Values to add to list\", v => OptionalArgumentList.Add(v)},\r\n                {\"r|requiredArguments=\", \"Optional string argument requiring a value be specified afterwards\", s => OptionalArgument1 = s},\r\n                {\"o|optionalArgument:\", \"Optional String argument which is null if no value follow is specified\", s => OptionalArgument2 = s ?? \"<no argument specified>\"}\r\n            };\r\n\r\n            this.HasRequiredOption(\"requiredOption=\", \"Required string argument also requiring a value.\", s => { });\r\n            this.HasOption(\"anotherOptional=\", \"Another way to specify optional arguments\", s => {});\r\n\r\n            HasAdditionalArguments(2, \"<Argument1> <Argument2>\");\r\n        }\r\n\r\n        public string Argument1;\r\n        public string Argument2;\r\n        public string OptionalArgument1;\r\n        public string OptionalArgument2;\r\n        public bool BooleanOption;\r\n        public List<string> OptionalArgumentList = new List<string>();\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            Argument1 = remainingArguments[0];\r\n            Argument2 = remainingArguments[1];\r\n\r\n            Console.WriteLine(@\"Called Example command - Argument1 = \"\"{0}\"\" Argument2 = \"\"{1}\"\" BooleanOption: {2}\", Argument1, Argument2, BooleanOption);\r\n\r\n            OptionalArgumentList.ForEach((item) => Console.WriteLine(@\"List Item {0} = \"\"{1}\"\"\", OptionalArgumentList.IndexOf(item), item));\r\n\r\n            if (BooleanOption)\r\n            {\r\n                throw new Exception(\"Throwing unhandled exception because BooleanOption is true\");\r\n            }\r\n\r\n            return 0;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/GetTimeCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    /// <summary>\r\n    /// As an example of ManyConsole usage, get-time is meant to show the simplest case possible usage.\r\n    /// </summary>\r\n    public class GetTimeCommand : ConsoleCommand\r\n    {\r\n        public GetTimeCommand()\r\n        {\r\n            this.IsCommand(\"get-time\", \"Returns the current system time.\");\r\n        }\r\n\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            Console.WriteLine(DateTime.UtcNow);\r\n\r\n            return 0;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/MattsCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    public class MattsCommand : ConsoleCommand\r\n    {\r\n        public string Baz;\r\n\r\n        public MattsCommand()\r\n        {\r\n            this.IsCommand(\"matts\");\r\n            this.HasOption(\"b|baz=\", \"baz\", v => Baz = v);\r\n            AllowsAnyAdditionalArguments(\"<foo1> <foo2> <fooN> where N is bar\");\r\n        }\r\n        public override int Run(string[] remainingArguments)\r\n        {\r\n            Console.WriteLine(\"baz is \" + (Baz ?? \"<null>\"));\r\n            Console.WriteLine(\"foos are: \" + String.Join(\", \", remainingArguments));\r\n            return 0;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/Program.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    class Program\r\n    {\r\n        static int Main(string[] args)\r\n        {\r\n            // locate any commands in the assembly (or use an IoC container, or whatever source)\r\n            var commands = GetCommands();\r\n\r\n            // then run them.\r\n            return ConsoleCommandDispatcher.DispatchCommand(commands, args, Console.Out);\r\n        }\r\n\r\n        public static IEnumerable<ConsoleCommand> GetCommands()\r\n        {\r\n            return ConsoleCommandDispatcher.FindCommandsInSameAssemblyAs(typeof(Program));\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/SampleConsole.csproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"12.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n  <PropertyGroup>\r\n    <Configuration Condition=\" '$(Configuration)' == '' \">Debug</Configuration>\r\n    <Platform Condition=\" '$(Platform)' == '' \">x86</Platform>\r\n    <ProductVersion>8.0.30703</ProductVersion>\r\n    <SchemaVersion>2.0</SchemaVersion>\r\n    <ProjectGuid>{4ACACC34-FEC3-432C-8EC1-4D07586EC948}</ProjectGuid>\r\n    <OutputType>Exe</OutputType>\r\n    <AppDesignerFolder>Properties</AppDesignerFolder>\r\n    <RootNamespace>SampleConsole</RootNamespace>\r\n    <AssemblyName>SampleConsole</AssemblyName>\r\n    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>\r\n    <TargetFrameworkProfile>\r\n    </TargetFrameworkProfile>\r\n    <FileAlignment>512</FileAlignment>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|x86' \">\r\n    <PlatformTarget>x86</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    <Prefer32Bit>false</Prefer32Bit>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|x86' \">\r\n    <PlatformTarget>x86</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    <Prefer32Bit>false</Prefer32Bit>\r\n  </PropertyGroup>\r\n  <ItemGroup>\r\n    <Reference Include=\"Mono.Options, Version=5.0.0.0, Culture=neutral, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\Mono.Options.5.3.0.1\\lib\\net4-client\\Mono.Options.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"Newtonsoft.Json\">\r\n      <HintPath>..\\packages\\Newtonsoft.Json.4.5.11\\lib\\net40\\Newtonsoft.Json.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"Sasa.Net\">\r\n      <HintPath>..\\lib\\Sasa-v0.9.3\\Sasa.Net.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System\" />\r\n    <Reference Include=\"System.Core\" />\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.Xml\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <Compile Include=\"DumpEmlFilesCommand.cs\" />\r\n    <Compile Include=\"EchoStringsCommand.cs\" />\r\n    <Compile Include=\"ExampleCommand.cs\" />\r\n    <Compile Include=\"GetTimeCommand.cs\" />\r\n    <Compile Include=\"MattsCommand.cs\" />\r\n    <Compile Include=\"Program.cs\" />\r\n    <Compile Include=\"SimpleConsoleModeCommand.cs\" />\r\n    <Compile Include=\"StatefulConsoleModeCommand.cs\" />\r\n    <Compile Include=\"ThrowException.cs\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ProjectReference Include=\"..\\ManyConsoleModeCommand\\ManyConsoleModeCommand.csproj\">\r\n      <Project>{b983a1f4-5a01-494a-969a-72fd67fcc49a}</Project>\r\n      <Name>ManyConsoleModeCommand</Name>\r\n    </ProjectReference>\r\n    <ProjectReference Include=\"..\\ManyConsole\\ManyConsole.csproj\">\r\n      <Project>{18205c5d-97c7-4314-94cc-8dcf0bca0673}</Project>\r\n      <Name>ManyConsole</Name>\r\n    </ProjectReference>\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <None Include=\"app.config\" />\r\n    <None Include=\"packages.config\" />\r\n  </ItemGroup>\r\n  <Import Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" />\r\n  <PropertyGroup>\r\n    <PreBuildEvent>\r\n    </PreBuildEvent>\r\n  </PropertyGroup>\r\n  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \r\n       Other similar extension points exist, see Microsoft.Common.targets.\r\n  <Target Name=\"BeforeBuild\">\r\n  </Target>\r\n  <Target Name=\"AfterBuild\">\r\n  </Target>\r\n  -->\r\n</Project>"
  },
  {
    "path": "SampleConsole/SimpleConsoleModeCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    public class SimpleConsoleModeCommand : ConsoleModeCommand\r\n    {\r\n        public SimpleConsoleModeCommand()\r\n        {\r\n            this.IsCommand(\"console-mode\", \"Starts a console interface that allows multiple commands to be run.\");\r\n        }\r\n\r\n        public override IEnumerable<ConsoleCommand> GetNextCommands()\r\n        {\r\n            return Program.GetCommands().Where(c => !(c is ConsoleModeCommand));\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/StatefulConsoleModeCommand.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Text;\r\nusing ManyConsole;\r\n\r\nnamespace SampleConsole\r\n{\r\n    public class StatefulConsoleModeCommand : ConsoleModeCommand\r\n    {\r\n        public int Count = 0;\r\n\r\n        public StatefulConsoleModeCommand()\r\n        {\r\n            this.IsCommand(\"stateful\", \"Starts a stateful console interface that allows multiple commands to be run.\");\r\n        }\r\n\r\n        public override void WritePromptForCommands()\r\n        {\r\n            Console.WriteLine(\"You have seen this console {0} times.\", Count++);\r\n\r\n            base.WritePromptForCommands();\r\n        }\r\n\r\n        public override IEnumerable<ConsoleCommand> GetNextCommands()\r\n        {\r\n            return new ConsoleCommand[] {new GetTimeCommand(), new MattsCommand(), new DumpEmlFilesCommand(), new DumpEmlFilesCommand()};\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "SampleConsole/ThrowException.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing ManyConsole;\n\nnamespace SampleConsole\n{\n    public class ThrowException : ConsoleCommand\n    {\n        public ThrowException()\n        {\n            this.IsCommand(\"throw-exception\", \"Throws an exception.\");\n            this.HasOption(\"m=\", \"Error message to be thrown.\", v => Message = v);\n        }\n\n        public string Message = \"Command ThrowException threw an exception with this message.\";\n\n        public override int Run(string[] remainingArguments)\n        {\n            throw new Exception(Message);\n        }\n    }\n}\n"
  },
  {
    "path": "SampleConsole/app.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<configuration>\n<startup><supportedRuntime version=\"v4.0\" sku=\".NETFramework,Version=v4.6.1\"/></startup></configuration>\n"
  },
  {
    "path": "SampleConsole/packages.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<packages>\r\n  <package id=\"Mono.Options\" version=\"5.3.0.1\" targetFramework=\"net461\" />\r\n  <package id=\"Newtonsoft.Json\" version=\"4.5.11\" targetFramework=\"net40-Client\" />\r\n</packages>"
  },
  {
    "path": "default.ps1",
    "content": "﻿properties {\r\n    $baseDirectory  = resolve-path .\r\n    $buildDirectory = ($buildDirectory, \"$baseDirectory\\build\") | select -first 1\r\n    $version = \"2.0.2\"\r\n\r\n    $shortDescription = \"A library for writing console applications.  Extends Mono.Options to support separate commands from one console application.\"\r\n}\r\n\r\nimport-module .\\tools\\PSUpdateXML.psm1\r\n. .\\psake_ext.ps1\r\n\r\ntask default -depends Build,RunTests,BuildNuget\r\n\r\ntask Cleanup {\r\n    if (test-path $buildDirectory) {\r\n        rm $buildDirectory -recurse\r\n    }\r\n}\r\n\r\ntask GenerateAssemblyInfo {\r\n\r\n    $trimmedVersion = $version;\r\n\r\n    if ($trimmedVersion.indexOf(\"-\") -gt -1) {\r\n        $trimmedVersion = $trimmedVersion.Substring(0, $trimmedVersion.indexOf(\"-\"));\r\n    }\r\n\t\r\n\t$projectFiles = ls -path $base_dir -include *.csproj -recurse\r\n\r\n    $projectFiles | write-host\r\n\tforeach($projectFile in $projectFiles) {\r\n\t\t\r\n        $projectDir = [System.IO.Path]::GetDirectoryName($projectFile)\r\n        \r\n\t\t$projectName = [System.IO.Path]::GetFileName($projectDir)\r\n\t\t$asmInfo = [System.IO.Path]::Combine($projectDir, [System.IO.Path]::Combine(\"Properties\", \"AssemblyInfo.cs\"))\r\n\t\t\t\t\r\n\t\tGenerate-Assembly-Info `\r\n\t\t\t-file $asmInfo `\r\n\t\t\t-title \"$projectName $version\" `\r\n\t\t\t-description $shortDescription `\r\n\t\t\t-company \"n/a\" `\r\n\t\t\t-product \"ManyConsole $version\" `\r\n\t\t\t-version \"$trimmedVersion\" `\r\n\t\t\t-fileversion \"$trimmedVersion\" `\r\n\t\t\t-copyright \"Copyright Frank Schwieterman 2019\" `\r\n\t\t\t-clsCompliant \"false\"\r\n\t}\r\n}\r\n\r\ntask Build -depends Cleanup,GenerateAssemblyInfo {\r\n    exec { & dotnet build ManyConsole -o \"$buildDirectory\\ManyConsole\" -c Release }    \r\n    exec { & dotnet build ManyConsoleModeCommand -o \"$buildDirectory\\ManyConsoleModeCommand\" -c Release }   \r\n}\r\n\r\ntask RunTests {\r\n    exec { & dotnet test --logger trx }\r\n}\r\n\r\ntask BuildNuget -depends Build {\r\n\r\n    $nugetTarget = \"$buildDirectory\\nuget\"\r\n\r\n    $null = mkdir \"$nugetTarget\\\"\r\n    cp .\\ManyConsole.nuspec \"$nugetTarget\\\"\r\n\r\n    $old = pwd\r\n    cd $nugetTarget\r\n\r\n    update-xml \"ManyConsole.nuspec\" {\r\n\r\n        for-xml \"//package/metadata\" {\r\n            set-xml -exactlyOnce \"//version\" \"$version\"\r\n            set-xml -exactlyOnce \"//description\" $shortDescription\r\n        }\r\n    }\r\n\r\n    ..\\..\\tools\\nuget pack \"ManyConsole.nuspec\"\r\n\r\n    cd $old\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/CHANGELOG.txt",
    "content": "= v0.9.3 =\r\n\r\n * added a new parameter to compact serializer to indicate whether to ignore the\r\n   NonSerializable attribute for fields.\r\n * added a DeepCopy extension method based on round-trip serialization.\r\n * fixed: Compact serializer was only saving the private fields of the top-level\r\n   type.\r\n * Compact serializer no longer relies on maintained field order; fields are\r\n   identified by the hash of their names.\r\n * only declared fields of each type are serialized at each level, which removes\r\n   some serialization redundancy.\r\n * added strongly typed enum Values() and Names() extension methods,\r\n   corresponding to untyped Enum.GetValues and Enum.GetNames() framework methods.\r\n * added full set of System.Enum type constraints to Sasa.Enum.Enums type parameter\r\n   to maximally reduce possibility of using a non-enum type.\r\n * renamed EnumExt to Enums and EnumerableExt to Enumerables.\r\n * added futures and promises.\r\n * added interfaces specifying the contract between any implementations of futures\r\n   and promises.\r\n * moved concurrent futures under Sasa.Concurrency.\r\n * added functions for asynchronously calling delegates and reading/writing\r\n   streams.\r\n * Events.Clear clears an event list in a thread-safe way, and returns the prior\r\n   contents.\r\n * Events.Add, Events.AddAny, Events.Remove and Events.RemoveAny to manage\r\n   MulticastDelegates in a thread-safe way without resorting to local lock objects.\r\n * moved media type handling into a separate Sasa.Mime assembly.\r\n * added functions to map between media types and file extensions.\r\n * added some convenient enum parsing functions.\r\n * added a simple search-and-replace CIL rewriter used to replace method bodies\r\n   with custom IL.\r\n * added Sasa.Operators which exposes the numeric and logical operators via a\r\n   generic class; this assembly is not verifiable, so it is packaged in a separate\r\n   dll.\r\n * added a simple string tokenizer which searches an input string for a list of\r\n   tokens and returns a stream of matches.\r\n * unsafe BinarySerializer and BinaryDeserializer are no longer sealed to permit\r\n   clients to extend the language of serializable types.\r\n * renamed Sasa.StringExt to Sasa.Strings.\r\n * added a DEBUG mode to the ilrewriter to generate debug assemblies.\r\n * added a Pratt-style extensible parser which includes a lexer. Calculator\r\n   programs are provided, including one with lexically scoped variables.\r\n * restructured all extension classes to a more sensible naming convention.\r\n * added a structured IO path object with convenient operator overloads.\r\n * added Enumerables.Single for converting a single value to an enumerable.\r\n * renamed Sasa.CodeContracts and Sasa.CodeContracts.Contract to Sasa.Contracts\r\n   and Sasa.Contracts.Contract respectively, to mimic Microsoft's changes.\r\n * moved URL64 encoding under the Sasa project.\r\n * Either type now uses standard type param naming conventions.\r\n * Either<,,,>.First was erroneously returning an Either<,,>.\r\n * added a function to coerce one delegate type to another.\r\n * changed termination condition for Sasa.IO.Streams.CopyTo to better conform to\r\n   abstract Stream guarantees.\r\n * added an explicit Void type to represent empty return values.\r\n * many FxCop suggested fixes.\r\n * added various operator overloads to tuples, weak references and other structs.\r\n * added serialization overloads to allow clients to provide a lookup cache; this\r\n   permits instance caching across serialization boundaries.\r\n * more comprehensive serialization tests, and time/space comparisons with\r\n   BinaryFormatter.\r\n * fixed bug where empty e-mail header values ran into subsequent header lines.\r\n * Strings.Lines now splits along both \\r and \\n and eliminates empty lines.\r\n * added a purely functional/persistent queue, PQueue<T>.\r\n * added a general persistent collection interface ISeq<TCollection, TItem>.\r\n * Seq<T> and Set<T> now implement ISeq<T>.\r\n * Seq<T> is now a struct-based persistent collection.\r\n * Renamed Dictionary extensions to better identify their usage.\r\n * added tests for Weak<T> and Sasa.Func extensions.\r\n * added Sasa.Func extension to lift Action<...> into Func<..., Empty>.\r\n * expanded Option<T> features, made it a cheap struct, restricted it to class\r\n   types, matched interface to Nullable<T>, added equality testing, added LINQ\r\n   interface for chaining computations.\r\n * simplified NonNull<T> hashcode.\r\n * added NonNull<T> constructor, equality test overloads, and convenience\r\n   extension method.\r\n * added a proper Append operation to Seq<T>.\r\n * added a Next property to traverse a Seq<T>.\r\n * now that Compact serializer accepts a dictionary cache, customTags are no\r\n   longer necessary; just initialize the dictionary with the appropriate types.\r\n * added Endian conversions for base types.\r\n * added BinaryReader/BinaryWriter implementations that encode primitive values\r\n   in Big-Endian encoding for portability.\r\n * added a simple reactive programming framework, Sasa.Reactive, which wraps\r\n   the Reactive.NET framework in a concrete type with some implicit coercions.\r\n * added a simple shared reference interface, IRef<T>.\r\n * some convenience extensions for composing LINQ lambda expressions,\r\n   Sasa.Linq.Expressions.\r\n * added a IVolatile interface indicating a reference may change unexpectedly.\r\n * Weak<T> now implements IVolatile<T>.\r\n * Events.AddAny/RemoveAny are no longer unsound (ref Delegate could never be\r\n   used with any concrete delegate type due to type unsoundness).\r\n * added Linq expression combinators.\r\n * added a simple purely functional map type used for lexical environments.\r\n * added fixed point lambda functions.\r\n * renamed IEnumerable.Cons to Push to reflect standard terminology.\r\n * added Seq atomic swap function, and Seq.Remove operation.\r\n * added Var.Equals overload to fix parsing unit test failure.\r\n * added IEnumerable.CopyTo to copy elements to an existing array.\r\n * disabled broken serialization for now.\r\n * replaced unsafe reflection facilities with a completely safe and\r\n   efficient reflection abstraction based on lightweight code generation.\r\n * extended ilrewrite to erase types; this is particularly useful for erasing\r\n   TypeConstraint<T> which is used to specify type constraints that C# normally\r\n   would not permit.\r\n * use ilrewrite to simplify interface to event handler extensions.\r\n * added Enumerables.Consume extension which is used to force eager evaluation.\r\n * added proper enum type constraint on enum extensions.\r\n * added an IEnumerable<T>.Transpose() extension method which swaps columns\r\n   and rows.\r\n * added a safe, efficient dynamic reflection facility.\r\n * added global, thread-safe type and method caches using a user-provided key\r\n   type.\r\n * ilrewrite: added support for .NET 4.0 toolchain.\r\n * Lazy<T> now implements IOptional<T> semantics, so clients can test the\r\n   current state of the lazy value, ie. whether it's been forced yet.\r\n * removed dangerous implicit conversion from Lazy<T> to T.\r\n * Enumerables.Single removed, use Enumerable.Repeat.\r\n * Strings.Char removed, string already implements IEnumerable<char>.\r\n * Sasa.Web.Asp.Page<T> now implements IValue<T>.\r\n * renamed ToShortName extension to ShortName.\r\n * added Sasa.Arrow, which adds an Arrow computation abstraction, including\r\n   LINQ query syntax support.\r\n * added full assembly and namespace documentation\r\n * Sasa.Operators assembly now also has Sasa.Operators namespace.\r\n\r\n= v0.9.2 =\r\n\r\n * fixed bug where quoted printable encoding failed when = was the last character.\r\n * added Pop3Session.Reset method.\r\n * compact serializer no longer uses stream positions to track cached objects, so\r\n   non-indexable streams, like DeflateStream, are now usable.\r\n * ISerializing interface generalized to support serializing non-primitive field\r\n   values.\r\n * added e-mail subject decoding.\r\n * fixed boundary condition on QuotedPrintableEncoding.\r\n * added extension methods to support safely raising events.\r\n * added an extension method to safely generate field and property names as strings.\r\n * added parameter to Compact serializer to indicate whether SerializableAttribute\r\n   should be respected.\r\n * added a boundary check for SliceEquals.\r\n * added a event Raise overload for any event handlers whose arg inherits from\r\n   EventArgs, which enables safe event raising within an object.\r\n * MailAddressCollection already handles parsing comma-delimited e-mail address\r\n   strings, so don't attempt to split them manually.\r\n * added a test for an e-mail address that contains a comma.\r\n * default to us-ascii charset if none provided.\r\n * NonNull now throws a ArgumentNullException with a proper description.\r\n * many FxCop-related fixes and CLS compliance improvements.\r\n * added usage restrictions on Sasa.CodeContracts attributes.\r\n\r\n= v0.9.1 =\r\n\r\n * Properly split header values for multiple addresses.\r\n * Fixed assembly version number scheme.\r\n\r\n= v0.9 =\r\n\r\n * Added a strongly typed Weak<T> wrapper for WeakReference.\r\n * Tuple types now implement IComparable<T>.\r\n * Fixed concurrent bug in Lazy<T>.\r\n * int, double, decimal and float now have a Bound() extension method\r\n   which ensures the value is within a specified range.\r\n * Added parameterless constructors to core types to support medium\r\n   trust serialization.\r\n * Added strongly typed char enumeration over a string.\r\n * Changed the return type on DictionaryExt.Insert to make it more\r\n   usable.\r\n * Added some selection functions to Option<T>.\r\n * Added MIME decoding to mail parser.\r\n * POP3 client now more closely conforms to RFC.\r\n * renamed List<T> to Seq<T> to avoid clashes with System.Collections.Generic.List<T>.\r\n * added more convenient string splitting functions.\r\n * reversed sense of & operator for Seq<T> to make it chainable.\r\n * added & overload for concatenating two Seq<T>.\r\n * removed Seq<T> | operator because unlike ?? operator, it's eagerly evaluated\r\n   which limits its usefulness.\r\n * added string.SliceEquals extension method, to compare a substrings without\r\n   calling string.Substring.\r\n * added a Set<T> type based on Seq<T>\r\n * added Array extension methods\r\n * added safe reflection abstraction\r\n * added an empty _ struct type to use as a generic type param wherever\r\n   void would normally be used, aka the unit type.\r\n * added Sasa.Dynamics assembly to group polytypic code.\r\n * added safe reflection functions and interface, ITypeFunc<R>.\r\n * added convenience functions for copying a stream into memory, and\r\n   copying one stream to another, under Sasa.IO.\r\n * changed Arrays.Append to accept a variable argument list.\r\n * renamed Sasa.Linq.Enumerable to avoid clashes with System.Linq.Enumerable.\r\n * added MailMessage.ToRaw(), which generates a string representation\r\n   of an e-mail similar to what is sent over the wire.\r\n * added a function to convert a media type to a file extension.\r\n * no longer assumes RFC822 header values are separated by commas.\r\n * added a base64 encoder suitable for embedding in URLs\r\n * added an ASP.NET project with a Page class providing a strongly typed\r\n   URL-based \"session state\"; using this page should theoretically make\r\n   clients immune to CSRF and clickjacking\r\n * added numerous Array extensions, including Slice, Dup, Fill, Repeat, Bound.\r\n\r\n= v0.8 =\r\n\r\n * Initial release"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Arrow.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Arrow</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Arrow.Arrow`2\">\r\n            <summary>\r\n            Represents a computation from <typeparamref name=\"T\"/> to <typeparamref name=\"U\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the input.</typeparam>\r\n            <typeparam name=\"R\">The type of the output.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.First``1\">\r\n            <summary>\r\n            Given a computation from <typeparamref name=\"T\"/> to <typeparamref name=\"R\"/>, construct\r\n            a computation that transforms the first argument and passes the second argument with no change.\r\n            </summary>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <returns>A computation that transforms the first argument.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.Second``1\">\r\n            <summary>\r\n            Given a computation from <typeparamref name=\"T\"/> to <typeparamref name=\"R\"/>, construct\r\n            a computation that transforms the second argument and passes the first argument with no change.\r\n            </summary>\r\n            <typeparam name=\"U\">The type of the first argument.</typeparam>\r\n            <returns>A computation that transforms the second argument.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.Select``1(System.Func{`1,``0})\">\r\n            <summary>\r\n            Transforms the computation from <typeparamref name=\"T\"/> to <typeparamref name=\"R\"/>, to\r\n            <typeparamref name=\"T\"/> to <typeparamref name=\"U\"/>.\r\n            </summary>\r\n            <typeparam name=\"U\">The new result type.</typeparam>\r\n            <param name=\"selector\">The transformation function.</param>\r\n            <returns>A new computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.SelectMany``1(System.Func{`1,Sasa.Arrow.Arrow{`0,``0}})\">\r\n            <summary>\r\n            Project result <typeparamref name=\"R\"/> into a new computation.\r\n            </summary>\r\n            <typeparam name=\"U\">The result type.</typeparam>\r\n            <param name=\"selector\">The projection function.</param>\r\n            <returns>A new computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.SelectMany``2(System.Func{`1,Sasa.Arrow.Arrow{`0,``0}},System.Func{`1,``0,``1})\">\r\n            <summary>\r\n            Project result <typeparamref name=\"R\"/> into a new computation of type <typeparamref name=\"U\"/>,\r\n            and collect and project into a final computation of type <typeparamref name=\"V\"/>.\r\n            </summary>\r\n            <typeparam name=\"U\">The intermediate result type.</typeparam>\r\n            <typeparam name=\"V\">The final result type.</typeparam>\r\n            <param name=\"selector\">The intermediate projection.</param>\r\n            <param name=\"resultSelector\">The final projection.</param>\r\n            <returns>A new computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.Do(System.Action{`1},System.Func{System.Exception,`1})\">\r\n            <summary>\r\n            Return a computation that executes in an exception handler.\r\n            </summary>\r\n            <param name=\"onNext\">The computation that runs in the try block.</param>\r\n            <param name=\"onError\">The computation that runs if an exception is thrown.</param>\r\n            <returns>A new computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.Concat(System.Collections.Generic.IEnumerable{Sasa.Arrow.Arrow{`0,`1}})\">\r\n            <summary>\r\n            Collects the results of a series of computations.\r\n            </summary>\r\n            <param name=\"sources\">The sequence of computations.</param>\r\n            <returns>A computation returning a sequence of results.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.SplitCombine``1(Sasa.Arrow.Arrow{`0,``0})\">\r\n            <summary>\r\n            Merges two computation results.\r\n            </summary>\r\n            <typeparam name=\"U\">The return type of the other computation.</typeparam>\r\n            <param name=\"other\">The computation to merge with.</param>\r\n            <returns>A combined computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.Fanout``2(Sasa.Arrow.Arrow{``0,``1})\">\r\n            <summary>\r\n            Combines two computations into a computation that accepts a pair that is split,\r\n            fed to each computation separately, then combined.\r\n            </summary>\r\n            <typeparam name=\"U\">The input of the other computation.</typeparam>\r\n            <typeparam name=\"V\">The output of the other computation.</typeparam>\r\n            <param name=\"other\">The other computation.</param>\r\n            <returns>A combined computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.If(System.Predicate{`0},Sasa.Arrow.Arrow{`0,`1})\">\r\n            <summary>\r\n            Runs one computation or the other based on a condition.\r\n            </summary>\r\n            <param name=\"condition\">The conditional.</param>\r\n            <param name=\"_else\">The computation to run if the conditional returns false.</param>\r\n            <returns>A new computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow`2.op_Implicit(System.Func{`0,`1})~Sasa.Arrow.Arrow{`0,`1}\">\r\n            <summary>\r\n            Implicitly convert delegates to arrows.\r\n            </summary>\r\n            <param name=\"thunk\">The delegate to convert.</param>\r\n            <returns>A new arrow.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Arrow.Arrow`2.Value\">\r\n            <summary>\r\n            The encapsulated computation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Arrow.Arrow\">\r\n            <summary>\r\n            Utility functions on arrows.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Return``2(System.Func{``0,``1})\">\r\n            <summary>\r\n            Return an arrow from <typeparamref name=\"T\"/> to <typeparamref name=\"R\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The input type.</typeparam>\r\n            <typeparam name=\"R\">The return type.</typeparam>\r\n            <param name=\"thunk\">The delegate representing the computation.</param>\r\n            <returns>A computation arrow.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Return``1(System.Func{``0})\">\r\n            <summary>\r\n            Return an arrow for a zero-argument computation.\r\n            </summary>\r\n            <typeparam name=\"R\">The return type.</typeparam>\r\n            <param name=\"thunk\">The delegate representing the computation.</param>\r\n            <returns>A computation arrow.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Return``1(System.Action{``0})\">\r\n            <summary>\r\n            Return an arrow for a computation that returns no value.\r\n            </summary>\r\n            <typeparam name=\"T\">The argument type.</typeparam>\r\n            <param name=\"thunk\">The delegate representing the computation.</param>\r\n            <returns>A computation arrow.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Run``2(Sasa.Arrow.Arrow{``0,``1},``0)\">\r\n            <summary>\r\n            Run the computation with the given input.\r\n            </summary>\r\n            <param name=\"arrow\">The computation to run.</param>\r\n            <param name=\"value\">The input value.</param>\r\n            <returns>The result of the computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Run``3(Sasa.Arrow.Arrow{Sasa.Pair{``0,``1},``2},``0,``1)\">\r\n            <summary>\r\n            Run the computation with the given input.\r\n            </summary>\r\n            <param name=\"arrow\">The computation to run.</param>\r\n            <param name=\"value\">The input value.</param>\r\n            <returns>The result of the computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Run``1(Sasa.Arrow.Arrow{Sasa.Empty,``0})\">\r\n            <summary>\r\n            Run the computation with the given input.\r\n            </summary>\r\n            <param name=\"arrow\">The computation to run.</param>\r\n            <returns>The result of the computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Arrow.Arrow.Loop``4(Sasa.Arrow.Arrow{Sasa.Pair{``0,``1},Sasa.Pair{``2,``3}})\">\r\n            <summary>\r\n            \r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <typeparam name=\"U\"></typeparam>\r\n            <typeparam name=\"R\"></typeparam>\r\n            <typeparam name=\"V\"></typeparam>\r\n            <param name=\"arrow\"></param>\r\n            <returns></returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Contracts.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Contracts</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract\">\r\n            <summary>\r\n            Microsoft-compatible Contracts class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Requires(System.Boolean)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise.\r\n            </summary>\r\n            <param name=\"cond\">The required condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.RequiresException\">Throws RequiresException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Requires(System.Boolean,System.String)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"cond\">The required condition.</param>\r\n            <param name=\"msg\">The message thrown in the exception.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.RequiresException\">Throws RequiresException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.RequiresAlways(System.Boolean)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise.\r\n            </summary>\r\n            <param name=\"cond\">The required condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.RequiresException\">Throws RequiresException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.RequiresAlways(System.Boolean,System.String)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"cond\">The required condition.</param>\r\n            <param name=\"msg\">The message thrown in the exception.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.RequiresException\">Throws RequiresException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Assume(System.Boolean)\">\r\n            <summary>\r\n            At runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException if the assumption is ever violated.\r\n            </summary>\r\n            <param name=\"cond\">The assumed condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.AssumeException\">Throws AssumeException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Assume(System.Boolean,System.String)\">\r\n            <summary>\r\n            At runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException with the given message if the assumption is ever\r\n            violated.\r\n            </summary>\r\n            <param name=\"cond\">The assumed condition.</param>\r\n            <param name=\"msg\">The message thrown in the exception.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.AssumeException\">Throws AssumeException if the condition fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Assert(System.Boolean)\">\r\n            <summary>\r\n            Checks a condition at the given program point, throws AssertException if \r\n            </summary>\r\n            <param name=\"cond\">The asserted condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.AssertException\">Throws AssertException if the assertion fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Assert(System.Boolean,System.String)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The message thrown in the exception.</param>\r\n            <param name=\"cond\">The asserted condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.AssertException\">Throws AssertException if the assertion fails.</exception>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Invariant(System.Boolean)\">\r\n            <summary>\r\n            Specifies an invariant property of a class. Throws Invariant exception if violated.\r\n            </summary>\r\n            <param name=\"cond\">The invariant condition.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.InvariantException\">Throws InvariantException if the condition is ever violated.</exception>\r\n            <remarks>This contract function works but is not automatically inserted after each public method as described\r\n            in the MS documention. IL rewriting is required to function as described.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Invariant(System.Boolean,System.String)\">\r\n            <summary>\r\n            Requires the condition to be true, throws RequiresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The message thrown in the exception.</param>\r\n            <param name=\"cond\">The invariant condition.</param>\r\n            <remarks>This contract function works but is not automatically inserted after each public method as described\r\n            in the MS documention. IL rewriting is required to function as described.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Ensures(System.Boolean)\">\r\n            <summary>\r\n            Ensures the given condition is true at method termination, throws EnsuresException otherwise.\r\n            </summary>\r\n            <param name=\"cond\">The condition that must hold.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.EnsuresException\">Throws EnsuresException if the condition is violated at the end of the method.</exception>\r\n            <remarks>This contract function is currently a no-op since it requires IL rewriting to function properly.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Ensures(System.Boolean,System.String)\">\r\n            <summary>\r\n            Ensures the given condition is true at method termination, throws EnsuresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The message to throw.</param>\r\n            <param name=\"cond\">The condition that must hold.</param>\r\n            <exception cref=\"T:System.Diagnostics.Contracts.Contract.EnsuresException\">Throws EnsuresException if the condition is violated at the end of the method.</exception>\r\n            <remarks>This contract function is currently a no-op since it requires IL rewriting to function properly.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.EnsuresOnThrow``1(System.Boolean)\">\r\n            <summary>\r\n            Ensures the given condition is true at method termination, throws EnsuresException otherwise.\r\n            </summary>\r\n            <param name=\"cond\">Condition</param>\r\n            <remarks>This contract function is currently a no-op since it requires IL rewriting to function properly.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.EnsuresOnThrow``1(System.Boolean,System.String)\">\r\n            <summary>\r\n            Ensures the given condition is true at method termination, throws EnsuresException otherwise with the given message.\r\n            </summary>\r\n            <param name=\"cond\">The condition that must hold.</param>\r\n            <param name=\"msg\">The error message to throw if cond does not hold.</param>\r\n            <remarks>This contract function is currently a no-op since it requires IL rewriting to function properly.</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.EndContractBlock\">\r\n            <summary>\r\n            A marker function to indicate the end of a legacy contract block.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.ForAll``1(System.Collections.Generic.IEnumerable{``0},System.Predicate{``0})\">\r\n            <summary>\r\n            Ensures the given predicate is satisfied for all elements of the collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the element in the collection.</typeparam>\r\n            <param name=\"x\">The collection.</param>\r\n            <param name=\"cond\">The predicate that must be satisfied.</param>\r\n            <returns>Returns true if all elements satisfy the predicate, false otherwise.</returns>\r\n            <remarks>public int [] Foo&lt;T&gt;(T[] xs){\r\n              CodeContract.Requires(CodeContract.ForAll(xs , (T x) =&gt; x != null) );</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.ForAll(System.Int32,System.Int32,System.Predicate{System.Int32})\">\r\n            <summary>\r\n            Ensure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).\r\n            </summary>\r\n            <param name=\"inclusiveLowerBound\">The lower bound of the range.</param>\r\n            <param name=\"exclusiveUpperBound\">The upper bound of the range (excluding this value).</param>\r\n            <param name=\"cond\">The predicate that must be true over the given range.</param>\r\n            <returns>Returns true if the predicate is true over the range, false otherwise.</returns>\r\n            <remarks>public int [] Foo(String [] xs){\r\n              CodeContract.Requires(CodeContract.ForAll(0, xs .Length, index =&gt; xs[index] ! = null ));</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Exists``1(System.Collections.Generic.IEnumerable{``0},System.Predicate{``0})\">\r\n            <summary>\r\n            Ensures the given predicate is satisfied for at least one element of the collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the element in the collection.</typeparam>\r\n            <param name=\"x\">The collection.</param>\r\n            <param name=\"cond\">The predicate that must be satisfied.</param>\r\n            <returns>Returns true if any element satisfies the predicate, false otherwise.</returns>\r\n            <remarks>public int [] Foo&lt;T&gt;(T[] xs){\r\n              CodeContract.Requires(!CodeContract.Exists(xs , (T x) =&gt; x == null) );</remarks>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.Exists(System.Int32,System.Int32,System.Predicate{System.Int32})\">\r\n            <summary>\r\n            Ensure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).\r\n            </summary>\r\n            <param name=\"inclusiveLowerBound\">The lower bound of the range.</param>\r\n            <param name=\"exclusiveUpperBound\">The upper bound of the range (excluding this value).</param>\r\n            <param name=\"cond\">The predicate to test over the given range.</param>\r\n            <returns>Returns true if the predicate is true for any value in the range, false otherwise.</returns>\r\n            <remarks>public int [] Foo(String [] xs){\r\n              CodeContract.Requires(!CodeContract.Exists(0, xs .Length, index =&gt; xs[index] == null ));</remarks>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract.RequiresException\">\r\n            <summary>\r\n            Exception thrown by Requires* functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.RequiresException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct an instance with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The error message.</param>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract.AssumeException\">\r\n            <summary>\r\n            Exception thrown by Assume* functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.AssumeException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct an instance with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The error message.</param>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract.AssertException\">\r\n            <summary>\r\n            Exception thrown by Assert* functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.AssertException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct an instance with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The error message.</param>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract.InvariantException\">\r\n            <summary>\r\n            Exception thrown by Invariant* functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.InvariantException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct an instance with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The error message.</param>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.Contract.EnsuresException\">\r\n            <summary>\r\n            Exception thrown by Ensures* functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.Contracts.Contract.EnsuresException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct an instance with the given message.\r\n            </summary>\r\n            <param name=\"msg\">The error message.</param>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.PureAttribute\">\r\n            <summary>\r\n            Marks a method as being \"pure\", with no side-effects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.ContractInvariantMethodAttribute\">\r\n            <summary>\r\n            Marks a method as an object invariant. When IL rewriting is supported,\r\n            this method will be called at the end of every public method and getter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.Contracts.RuntimeContractsAttribute\">\r\n            <summary>\r\n            This assembly-level attribute is added to an assembly after the\r\n            rewriter has processed it.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Core.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Core</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.IO.Streams\">\r\n            <summary>\r\n            Extension methods to System.IO.Stream\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.CopyTo(System.IO.Stream,System.IO.Stream)\">\r\n            <summary>\r\n            Copy one stream to another.\r\n            </summary>\r\n            <param name=\"input\">The input stream.</param>\r\n            <param name=\"output\">The output stream.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.ToArray(System.IO.Stream)\">\r\n            <summary>\r\n            Read the full stream into a byte array.\r\n            </summary>\r\n            <param name=\"s\">The stream to read.</param>\r\n            <returns>The contents of the stream.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.SpawnRead(System.IO.Stream,System.Int32)\">\r\n            <summary>\r\n            Perform an async read on the given stream and return a promise.\r\n            </summary>\r\n            <param name=\"stream\">The stream to read.</param>\r\n            <param name=\"read\">The number of bytes to read.</param>\r\n            <returns>A promise for the bytes.</returns>\r\n            <remarks>This function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.SpawnRead(System.IO.Stream,System.Byte[],System.Int32,System.Int32)\">\r\n            <summary>\r\n            Perform an async read on the given stream into the given buffer.\r\n            </summary>\r\n            <param name=\"stream\">The stream to read.</param>\r\n            <param name=\"buffer\">The buffer to read into.</param>\r\n            <param name=\"offset\">The offset into the buffer at which to begin writing.</param>\r\n            <param name=\"read\">The number of bytes to read.</param>\r\n            <returns>A promise for the bytes.</returns>\r\n            <remarks>This function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.SpawnWrite(System.IO.Stream,System.Byte[])\">\r\n            <summary>\r\n            Perform an async write on the given stream.\r\n            </summary>\r\n            <param name=\"stream\">The stream to write to.</param>\r\n            <param name=\"buffer\">The buffer to read from.</param>\r\n            <returns>A promise for the completion of the write operation.</returns>\r\n            <remarks>This function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.Streams.SpawnWrite(System.IO.Stream,System.Byte[],System.Int32,System.Int32)\">\r\n            <summary>\r\n            Perform an async write on the given stream.\r\n            </summary>\r\n            <param name=\"stream\">The stream to write to.</param>\r\n            <param name=\"buffer\">The buffer to read from.</param>\r\n            <param name=\"offset\">The offset into the buffer to begin reading.</param>\r\n            <param name=\"read\">The number of bytes to write.</param>\r\n            <returns>A promise for the completion of the write operation.</returns>\r\n            <remarks>This function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.</remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.IO.FsPath\">\r\n            <summary>\r\n            A structured file system path.\r\n            </summary>\r\n            <remarks>\r\n            This module ensures that all paths containing \".\" and \"..\" are rewritten to equivalent forms without\r\n            directory change operations, where possible.\r\n            \r\n            In some cases, this is not possible, such as when \"..\" precedes the rest of the path, ie. ../foo. In such\r\n            cases, the directory change operations are retained, under the assumption that a future path combination\r\n            will permit full resolution.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.#ctor(System.String)\">\r\n            <summary>\r\n            Construct a structured file system path.\r\n            </summary>\r\n            <param name=\"path\">The root path.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.#ctor(System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n            Construct a structured path from a series of path components.\r\n            </summary>\r\n            <param name=\"parts\">Path fragments making up the full path.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Normalize(System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n            Ensure each string in the untrusted sequence has been split into path components.\r\n            </summary>\r\n            <param name=\"untrusted\">The untrusted sequence.</param>\r\n            <returns>A trustued sequence of path components.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Parse(System.Collections.Generic.IEnumerator{System.String})\">\r\n            <summary>\r\n            Traverse the sequence of path fragments and construct a path fragment list,\r\n            stripping out any directory change fragments.\r\n            </summary>\r\n            <param name=\"seq\">The stream of fragments to process.</param>\r\n            <returns>A trusted sequence of path fragments</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Tokenize(System.String)\">\r\n            <summary>\r\n            Take a string assumed to be a path, and split it along directory separators.\r\n            </summary>\r\n            <param name=\"path\">The presumed path.</param>\r\n            <returns>An enumerator returning each fragment of the path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Combine(Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Construct a combined path from two paths.\r\n            </summary>\r\n            <param name=\"file\">The path to combine with this one.</param>\r\n            <returns>The combined path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Combine(Sasa.Collections.Seq{System.String},Sasa.Collections.Seq{System.String})\">\r\n            <summary>\r\n            Combine two fragment lists, while performing directory change operations.\r\n            </summary>\r\n            <param name=\"left\">The left path.</param>\r\n            <param name=\"right\">The right path.</param>\r\n            <returns>A combined path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator over the file path components.\r\n            </summary>\r\n            <returns>An enumerator that can be used to iterate through the collection.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Root(System.String)\">\r\n            <summary>\r\n            Declare the root path.\r\n            </summary>\r\n            <param name=\"path\">The root path.</param>\r\n            <returns>A path encapsulating the given root.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Equals(Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Compare two paths for equality.\r\n            </summary>\r\n            <param name=\"other\">The path to compare to.</param>\r\n            <returns>True if the paths are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.Equals(System.Object)\">\r\n            <summary>\r\n            Compare two paths for equality.\r\n            </summary>\r\n            <param name=\"obj\">The path to compare to.</param>\r\n            <returns>True if the paths are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.GetHashCode\">\r\n            <summary>\r\n            Compute hash code of path.\r\n            </summary>\r\n            <returns>Hash code for path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.CompareTo(Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Order two paths.\r\n            </summary>\r\n            <param name=\"other\">Other path to compare against.</param>\r\n            <returns>Returns zero if equal, less than zero if this path\r\n            is less than <paramref name=\"other\"/>, else returns greater than\r\n            zero.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.ToString\">\r\n            <summary>\r\n            Return a string representation of the path.\r\n            </summary>\r\n            <returns>A string representation of the path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(Sasa.IO.FsPath,System.String)\">\r\n            <summary>\r\n            Combine the given path and string component.\r\n            </summary>\r\n            <param name=\"path\">A structured path.</param>\r\n            <param name=\"part\">An unstructured path string.</param>\r\n            <returns>The combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(System.String,Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Combine the given path and string component.\r\n            </summary>\r\n            <param name=\"path\">A structured path.</param>\r\n            <param name=\"part\">An unstructured path string.</param>\r\n            <returns>The combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(Sasa.IO.FsPath,System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n            Combine the given path and string components.\r\n            </summary>\r\n            <param name=\"path\">The structured path.</param>\r\n            <param name=\"parts\">The components of a path.</param>\r\n            <returns>A combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(System.Collections.Generic.IEnumerable{System.String},Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Combine the given path and string components.\r\n            </summary>\r\n            <param name=\"path\">The structured path.</param>\r\n            <param name=\"parts\">The components of a path.</param>\r\n            <returns>A combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(System.String[],Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Combine the given path and string components.\r\n            </summary>\r\n            <param name=\"path\">The structured path.</param>\r\n            <param name=\"parts\">The components of a path.</param>\r\n            <returns>A combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Division(Sasa.IO.FsPath,Sasa.IO.FsPath)\">\r\n            <summary>\r\n            Combine the given path and string components.\r\n            </summary>\r\n            <param name=\"path1\">The first structured path.</param>\r\n            <param name=\"path2\">The second structured path.</param>\r\n            <returns>The combined structured path.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.FsPath.op_Implicit(System.String)~Sasa.IO.FsPath\">\r\n            <summary>\r\n            Implicitly convert a string to a structured path.\r\n            </summary>\r\n            <param name=\"path\">The path contained in an unstructured string.</param>\r\n            <returns>A structured path.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.IPromise`3\">\r\n            <summary>\r\n            Contract for promises, which are used to resolve or fail a future.\r\n            </summary>\r\n            <typeparam name=\"TFuture\">The type of unresolved futures.</typeparam>\r\n            <typeparam name=\"TResolved\">The type of resolved futures.</typeparam>\r\n            <typeparam name=\"T\">The type of the future's value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.IPromise`3.Fulfill(`2)\">\r\n            <summary>\r\n            Resolve the future to a legitimate value.\r\n            </summary>\r\n            <param name=\"value\">Resolve this future to the given value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IPromise`3.Fail(System.Exception)\">\r\n            <summary>\r\n            Future failed with an exception.\r\n            </summary>\r\n            <param name=\"reason\">The reason the future failed to resolve.</param>\r\n        </member>\r\n        <member name=\"P:Sasa.IPromise`3.Future\">\r\n            <summary>\r\n            The future value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.IFuture`2\">\r\n            <summary>\r\n            A future value.\r\n            </summary>\r\n            <typeparam name=\"TFuture\">The type of the future.</typeparam>\r\n            <typeparam name=\"T\">The type of the future's value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.IFuture`2.ContinueWith(System.Action{`0})\">\r\n            <summary>\r\n            Register a continuation to be invoked on future resolution.\r\n            </summary>\r\n            <param name=\"continuation\">Continuation invoked when the future resolves to a value.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.PromiseResolvedException\">\r\n            <summary>\r\n            Exception thrown when attempting to resolve a promise that has already been resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.PromiseResolvedException.#ctor\">\r\n            <summary>\r\n            Initialize a PromiseResolvedException.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Resolved`1\">\r\n            <summary>\r\n            A resolved future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the future value.</typeparam>\r\n        </member>\r\n        <member name=\"T:Sasa.Future`1\">\r\n            <summary>\r\n            A future value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the future value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.TryGetValue(`0@)\">\r\n            <summary>\r\n            Attempt to extract the value.\r\n            </summary>\r\n            <param name=\"value\">The value encapsulated in this future, or default(T) if it's not yet resolved.</param>\r\n            <returns>Returns true if the future has resolved.</returns>\r\n            <remarks>\r\n            This method is thread-safe. If the future has resolved to an exception, this method will return false.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Wait\">\r\n            <summary>\r\n            Explicitly wait on the given future.\r\n            </summary>\r\n            <remarks>This is generally not recommended as it inhibits a program's scalability.</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.op_Implicit(System.Exception)~Sasa.Future{`0}\">\r\n            <summary>\r\n            Implicitly convert an exception into a failed future.\r\n            </summary>\r\n            <param name=\"reason\">The reason the future failed.</param>\r\n            <returns>A failed future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.ContinueWith(System.Action{Sasa.Resolved{`0}})\">\r\n            <summary>\r\n            Register a continuation to be invoked on future resolution.\r\n            </summary>\r\n            <param name=\"continuation\">Continuation invoked when the future resolves to a value.</param>\r\n        </member>\r\n        <member name=\"P:Sasa.Future`1.HasValue\">\r\n            <summary>\r\n            Returns true if this future has resolved to a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Future`1.HasError\">\r\n            <summary>\r\n            Returns trye if this future has resolved to an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Future`1.Resolved\">\r\n            <summary>\r\n            Returns the resolved future for this abstract future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Future`1.Fulfilled\">\r\n            <summary>\r\n            A resolved value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Resolved`1\">\r\n            <summary>\r\n            A resolved future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the future value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Resolved`1.op_Implicit(System.Exception)~Sasa.Resolved{`0}\">\r\n            <summary>\r\n            Implicitly convert an exception into a failed future.\r\n            </summary>\r\n            <param name=\"reason\">The reason the future failed.</param>\r\n            <returns>A failed future.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Resolved`1.Value\">\r\n            <summary>\r\n            The value computed by this future. If the future failed,\r\n            accessing this property will throw the exception that \r\n            caused the failure.\r\n            </summary>\r\n            <exception cref=\"T:System.Exception\">\r\n            If the future fails, then the exception thrown is the reason for failure.\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:Sasa.Future`1.Failed\">\r\n            <summary>\r\n            A failed future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Future`1.Pending\">\r\n            <summary>\r\n            A potentially unresolved future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Future`1.Pending.settled\">\r\n            <summary>\r\n            The settled value of the future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Future`1.Pending.queue\">\r\n            <summary>\r\n            Threads can manually block.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.OnSettle\">\r\n            <summary>\r\n            Invoked once the future is resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.Block\">\r\n            <summary>\r\n            Block current thread until the wait handler fires.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.Wait(System.Action{Sasa.Resolved{`0}})\">\r\n            <summary>\r\n            Register a continuation to be invoked on future resolution.\r\n            </summary>\r\n            <param name=\"continuation\">Continuation invoked when the future resolves to a value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.Settle(Sasa.Resolved{`0})\">\r\n            <summary>\r\n            Used internally to set the value of the future and trigger\r\n            the evaluation of the observers.\r\n            </summary>\r\n            <param name=\"fut\">The settled future value.</param>\r\n            <returns>The settled future value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.ToString\">\r\n            <summary>\r\n            Returns a string representation of the future.\r\n            </summary>\r\n            <returns>String representation of the current future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future`1.Pending.async(System.IAsyncResult)\">\r\n            <summary>\r\n            The AsyncCallback invoked on async completion.\r\n            </summary>\r\n            <param name=\"result\">The result of an asynchronous operation.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Promise`1\">\r\n            <summary>\r\n            Used to resolve or fail a future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the promised future.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Promise`1.#ctor\">\r\n            <summary>\r\n            Constructs a new Promise bound to an unresolved future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Promise`1.Fulfill(`0)\">\r\n            <summary>\r\n            Resolve the future to a legitimate value.\r\n            </summary>\r\n            <param name=\"value\">Resolve this future to the given value.</param>\r\n            <exception cref=\"T:Sasa.PromiseResolvedException\">Thrown if the promise is already resolved.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Promise`1.EnsureNotResolved\">\r\n            <summary>\r\n            Checks whether the current promise is already resolved. If so, it releases\r\n            the current lock on the object and throws an exception.\r\n            </summary>\r\n            <exception cref=\"T:Sasa.PromiseResolvedException\">Thrown if the promise is already resolved.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Promise`1.Fail(System.Exception)\">\r\n            <summary>\r\n            Future failed with an exception.\r\n            </summary>\r\n            <param name=\"reason\">The reason the future failed to resolve.</param>\r\n            <exception cref=\"T:Sasa.PromiseResolvedException\">Thrown if the promise is already resolved.</exception>\r\n        </member>\r\n        <member name=\"P:Sasa.Promise`1.Future\">\r\n            <summary>\r\n            The future this promise is bound to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Future\">\r\n            <summary>\r\n            Functions on Future values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Do``2(Sasa.Future{``0},System.Func{Sasa.Future{``0},Sasa.Future{``1}})\">\r\n            <summary>\r\n            Creates a new future of type <typeparamref name=\"U\"/> which will be computed from the result of\r\n            the future of type <typeparamref name=\"T\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The current future's type.</typeparam>\r\n            <typeparam name=\"U\">The new future's type.</typeparam>\r\n            <param name=\"future\">The future to transform.</param>\r\n            <param name=\"selector\">The function creating the new future's type.</param>\r\n            <returns>A new future constructed from the existing future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Select``2(Sasa.Future{``0},System.Func{``0,``1},System.Func{System.Exception,``1})\">\r\n            <summary>\r\n            Project a future of type <typeparamref name=\"T\"/> to a future of type <typeparamref name=\"U\"/>. This\r\n            overload specifies an exception handler.\r\n            </summary>\r\n            <typeparam name=\"T\">The current future's type.</typeparam>\r\n            <typeparam name=\"U\">The new future's type.</typeparam>\r\n            <param name=\"future\">The future to transform.</param>\r\n            <param name=\"selector\">The selection function.</param>\r\n            <param name=\"handler\">The function invoked if the future resolved to an exception.</param>\r\n            <returns>A new future constructed from the existing future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Select``2(Sasa.Future{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Project a future of type <typeparamref name=\"T\"/> to a future of type <typeparamref name=\"U\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The current future's type.</typeparam>\r\n            <typeparam name=\"U\">The new future's type.</typeparam>\r\n            <param name=\"future\">The future to transform.</param>\r\n            <param name=\"selector\">The selection function.</param>\r\n            <returns>A new future constructed from the existing future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.SelectMany``2(Sasa.Future{``0},System.Func{Sasa.Future{``0},Sasa.Future{``1}})\">\r\n            <summary>\r\n            Project a future to another future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the source future.</typeparam>\r\n            <typeparam name=\"U\">The type of the returned future.</typeparam>\r\n            <param name=\"future\">The source future.</param>\r\n            <param name=\"selector\">\r\n            A selection function used to map values of type <typeparamref name=\"T\"/>\r\n            to futures of type <typeparamref name=\"U\"/>.\r\n            </param>\r\n            <returns>A new future of type <typeparamref name=\"U\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.SelectMany``3(Sasa.Future{``0},System.Func{Sasa.Future{``0},Sasa.Future{``1}},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects a sequence of futures to a final future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first future.</typeparam>\r\n            <typeparam name=\"U\">The type of the intermediate future.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned future.</typeparam>\r\n            <param name=\"future \">The first future.</param>\r\n            <param name=\"selector\">The selector for the intermediate future.</param>\r\n            <param name=\"result\">The selector for the resulting future.</param>\r\n            <returns>A future for a value of type <typeparamref name=\"R\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``1(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``0})\">\r\n            <summary>\r\n            Begin an async operation given the begin and end calls.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value to generate.</typeparam>\r\n            <param name=\"begin\">The BeginAsync operation.</param>\r\n            <param name=\"end\">The EndAsync operation.</param>\r\n            <returns>A promise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``1(System.Func{``0})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"T\">The function's return value.</typeparam>\r\n            <param name=\"call\">The function to call.</param>\r\n            <returns>A promise for the function's return value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``2(``0,System.Func{``0,``1})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"T\">The type of the function's return value.</typeparam>\r\n            <param name=\"call\">The function to call.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``3(``0,``1,System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <typeparam name=\"T\">The type of the function's return value.</typeparam>\r\n            <param name=\"call\">The function to call.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <param name=\"arg1\">The function's second argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``4(``0,``1,``2,System.Func{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <typeparam name=\"TArg2\">The type of the function's third argument.</typeparam>\r\n            <typeparam name=\"T\">The type of the function's return value.</typeparam>\r\n            <param name=\"call\">The function to call.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <param name=\"arg1\">The function's second argument.</param>\r\n            <param name=\"arg2\">The function's third argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``5(``0,``1,``2,``3,System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <typeparam name=\"TArg2\">The type of the function's third argument.</typeparam>\r\n            <typeparam name=\"TArg3\">The type of the function's fourth argument.</typeparam>\r\n            <typeparam name=\"T\">The type of the function's return value.</typeparam>\r\n            <param name=\"call\">The function to call.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <param name=\"arg1\">The function's second argument.</param>\r\n            <param name=\"arg2\">The function's third argument.</param>\r\n            <param name=\"arg3\">The function's fourth argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn(System.Action)\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``1(``0,System.Action{``0})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg\">The type of the function's first argument.</typeparam>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"arg0\">The first argument to the function.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``2(``0,``1,System.Action{``0,``1})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"arg0\">The first argument to the function.</param>\r\n            <param name=\"arg1\">The second argument to the function.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.SpawnRaise``1(System.Delegate,System.Object,``0)\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg\">The type of the event's EventArgs parameter.</typeparam>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"sender\">The sender argument of the event.</param>\r\n            <param name=\"args\">The EventArgs for the event.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``3(``0,``1,``2,System.Action{``0,``1,``2})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <typeparam name=\"TArg2\">The type of the function's third argument.</typeparam>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <param name=\"arg1\">The function's second argument.</param>\r\n            <param name=\"arg2\">The function's third argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Spawn``4(``0,``1,``2,``3,System.Action{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <typeparam name=\"TArg0\">The type of the function's first argument.</typeparam>\r\n            <typeparam name=\"TArg1\">The type of the function's second argument.</typeparam>\r\n            <typeparam name=\"TArg2\">The type of the function's third argument.</typeparam>\r\n            <typeparam name=\"TArg3\">The type of the function's fourth argument.</typeparam>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"arg0\">The function's first argument.</param>\r\n            <param name=\"arg1\">The function's second argument.</param>\r\n            <param name=\"arg2\">The function's third argument.</param>\r\n            <param name=\"arg3\">The function's fourth argument.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.SpawnAny``1(``0,System.Object[])\">\r\n            <summary>\r\n            Execute the given function asynchronously.\r\n            </summary>\r\n            <param name=\"call\">The function to execute.</param>\r\n            <param name=\"args\">The function arguments.</param>\r\n            <returns>A future for the function call's result.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Pending``1\">\r\n            <summary>\r\n            Construct a pending future.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the future.</typeparam>\r\n            <returns>A pending future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Fulfill``1(``0)\">\r\n            <summary>\r\n            Construct a resolved future.\r\n            </summary>\r\n            <param name=\"value\">The value of the future.</param>\r\n            <returns>A resolved future.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Promise``1(System.Action{Sasa.Promise{``0}})\">\r\n            <summary>\r\n            Convenience function for starting a computation that explicitly sets a promise.\r\n            </summary>\r\n            <typeparam name=\"T\">The value of the future being constructed.</typeparam>\r\n            <param name=\"body\">The computation to start with the given promise.</param>\r\n            <returns>The future for the result of the computation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Future.Fail``1(System.Exception)\">\r\n            <summary>\r\n            Construct a failed future.\r\n            </summary>\r\n            <param name=\"reason\">The reason for failure.</param>\r\n            <returns>A failed future.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.IO.PortableWriter\">\r\n            <summary>\r\n            A BinaryWriter that encodes values from host to big-endian encoding.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Construct a PortableWriter given the output stream.\r\n            </summary>\r\n            <param name=\"output\">The output stream to write to.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.#ctor(System.IO.Stream,System.Text.Encoding)\">\r\n            <summary>\r\n            Construct a PortableWriter given an output stream and an encoding.\r\n            </summary>\r\n            <param name=\"output\">The output stream to write to.</param>\r\n            <param name=\"encoding\">The character encoding to use.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.Int16)\">\r\n            <summary>\r\n            Write a 16-bit signed value.\r\n            </summary>\r\n            <param name=\"value\">A 16-bit signed value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.UInt16)\">\r\n            <summary>\r\n            Write a 16-bit unsigned value.\r\n            </summary>\r\n            <param name=\"value\">A 16-bit unsigned value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.Int32)\">\r\n            <summary>\r\n            Write a 32-bit signed value.\r\n            </summary>\r\n            <param name=\"value\"></param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.UInt32)\">\r\n            <summary>\r\n            Write a 32-bit unsigned value.\r\n            </summary>\r\n            <param name=\"value\">Write a 32-bit unsigned value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.Int64)\">\r\n            <summary>\r\n            Write a 64-bit signed value.\r\n            </summary>\r\n            <param name=\"value\">The 64-bit signed value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.UInt64)\">\r\n            <summary>\r\n            Write a 64-bit unsigned value.\r\n            </summary>\r\n            <param name=\"value\">A 64-bit unsigned value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableWriter.Write(System.Decimal)\">\r\n            <summary>\r\n            Write a 128-bit decimal value.\r\n            </summary>\r\n            <param name=\"value\">The decimal to write.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.IO.PortableReader\">\r\n            <summary>\r\n            A BinaryReader that decodes values from big-endian to host encoding.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Construct a PortableReader that reads from the given stream.\r\n            </summary>\r\n            <param name=\"input\">The stream to read from.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.#ctor(System.IO.Stream,System.Text.Encoding)\">\r\n            <summary>\r\n            Construct a PortableReader that reads from the given stream with the given encoding.\r\n            </summary>\r\n            <param name=\"input\">The stream to read from.</param>\r\n            <param name=\"encoding\">The encoding to use when reading.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadInt16\">\r\n            <summary>\r\n            Read a signed 16-bit value.\r\n            </summary>\r\n            <returns>A signed 16-bit value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadUInt16\">\r\n            <summary>\r\n            Read an unsigned 16-bit value.\r\n            </summary>\r\n            <returns>An unsigned 16-bit value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadInt32\">\r\n            <summary>\r\n            Read a signed 32-bit value.\r\n            </summary>\r\n            <returns>A signed 32-bit value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadUInt32\">\r\n            <summary>\r\n            Read an unsigned 32-bit value.\r\n            </summary>\r\n            <returns>An unsigned 32-bit value</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadInt64\">\r\n            <summary>\r\n            Read a signed 64-bit value.\r\n            </summary>\r\n            <returns>A signed 64-bit value</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadUInt64\">\r\n            <summary>\r\n            Read an unsigned 64-bit value.\r\n            </summary>\r\n            <returns>An unsigned 64-bit value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.IO.PortableReader.ReadDecimal\">\r\n            <summary>\r\n            Read a 128-bit decimal value.\r\n            </summary>\r\n            <returns>A 128-bit decimal value.</returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Dynamics.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Dynamics</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Dynamics.IReflector\">\r\n            <summary>\r\n            Statically-typed, safe reflection.\r\n            </summary>\r\n            <remarks>\r\n            This interface provides implementors the ability to efficiently view and modify\r\n            objects via reflection, with complete type safety. \r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Bool(System.Boolean@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Bool field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Int16(System.Int16@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Int16 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.UInt16(System.UInt16@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.UInt16 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Int32(System.Int32@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Int32 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.UInt32(System.UInt32@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.UInt32 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Int64(System.Int64@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Int64 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.UInt64(System.UInt64@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.UInt64 field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Char(System.Char@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Char field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Byte(System.Byte@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Byte field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.SByte(System.SByte@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.SByte field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.String(System.String@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.String field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Float(System.Single@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Single field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Double(System.Double@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Double field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Decimal(System.Decimal@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Decimal field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.DateTime(System.DateTime@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.DateTime field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.DBNull(System.DBNull@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.DBNull field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Nullable``1(System.Nullable{``0}@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Nullable field of type <typeparamref name=\"T\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Type(System.Type@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Type handle.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Delegate``1(``0@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Delegate field.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Array``1(``0[]@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a System.Array field.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflector.Object``1(``0@,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Designates a field of type <typeparam name=\"T\" />.\r\n            </summary>\r\n            <param name=\"field\">The field reference.</param>\r\n            <param name=\"info\">The field information.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.IReflected\">\r\n            <summary>\r\n            Any objects implementing this interface are assumed to\r\n            provide their own reflection callback.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.IReflected.Reflect(Sasa.Dynamics.IReflector,System.Reflection.FieldInfo)\">\r\n            <summary>\r\n            Inspect the internals of this object.\r\n            </summary>\r\n            <param name=\"reflector\">The reflector.</param>\r\n            <param name=\"field\">The field information.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.Reflector\">\r\n            <summary>\r\n            Caches the IReflector MethodInfo references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.Type`1\">\r\n            <summary>\r\n            A reflector generator.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of object to inspect.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Type`1.Generate\">\r\n            <summary>\r\n            Generate the reflector function.\r\n            </summary>\r\n            <returns>A reflector function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Type`1.Constructor\">\r\n            <summary>\r\n            Generate a parameterless constructor delegate.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Dynamics.Type`1.Reflect\">\r\n            <summary>\r\n            Return a function that can efficiently inspect and/or modify the internals\r\n            of any object of type <typeparamref name=\"T\"/>.\r\n            </summary>\r\n            <returns>A function that can inspect a <typeparamref name=\"T\"/>'s internals.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Dynamics.Type`1.Create\">\r\n            <summary>\r\n            Return a parameterless constructor for <typeparamref name=\"T\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.Methods`1\">\r\n            <summary>\r\n            A thread-safe, user-controlled method cache.\r\n            </summary>\r\n            <typeparam name=\"K\">The type of key used to track methods.</typeparam>\r\n            <remarks>\r\n            Only static methods are currently supported.\r\n            \r\n            All methods are cached as one of either Action&lt;*&gt; or Func&lt;*&gt; overloads.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Cache(`0,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n            Generate the appropriate delegate from the given MethodInfo and\r\n            cache it.\r\n            </summary>\r\n            <param name=\"key\"></param>\r\n            <param name=\"method\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.TypeCheck``1(System.Delegate)\">\r\n            <summary>\r\n            Throws an InvalidCastException if the cached delegate is not of the proper type.\r\n            </summary>\r\n            <typeparam name=\"R\"></typeparam>\r\n            <param name=\"func\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.FuncType(System.Int32,System.Boolean)\">\r\n            <summary>\r\n            Return the appropriate delegate type to create for the given number of\r\n            arguments and the return type.\r\n            </summary>\r\n            <param name=\"argn\">Number of delegate arguments.</param>\r\n            <param name=\"isFunc\">True if return type is not null.</param>\r\n            <returns>The type of delegate to create.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Method``1(`0,System.Func{`0,System.Reflection.MethodInfo})\">\r\n            <summary>\r\n            Load a delegate by key.\r\n            </summary>\r\n            <typeparam name=\"R\">The type of the return delegate.</typeparam>\r\n            <param name=\"key\">The key under which this delegate is cached.</param>\r\n            <param name=\"find\">A callback to find the MethodInfo for the corresponding key.</param>\r\n            <returns>A delegate for the static method.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Instance``1(`0,System.Func{`0,``0})\">\r\n            <summary>\r\n            Load a delegate by key.\r\n            </summary>\r\n            <typeparam name=\"R\">The type of the return delegate.</typeparam>\r\n            <param name=\"key\">The key under which this delegate is cached.</param>\r\n            <param name=\"find\">A callback to find the MethodInfo for the corresponding key.</param>\r\n            <returns>A delegate for the static method.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Cache``1(`0,``0)\">\r\n            <summary>\r\n            Explicitly cache the corresponding delegate.\r\n            </summary>\r\n            <typeparam name=\"R\">The delegate type to cache.</typeparam>\r\n            <param name=\"key\">The key under which to cache the delegate.</param>\r\n            <param name=\"value\">The delegate instance.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Contains(`0)\">\r\n            <summary>\r\n            Returns true if the cache contains an entry with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to check.</param>\r\n            <returns>True if an entry with the key exists.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Methods`1.Create\">\r\n            <summary>\r\n            Construct a new instance of the method cache.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.Types`1\">\r\n            <summary>\r\n            A thread-safe, user-controlled cache of types.\r\n            </summary>\r\n            <typeparam name=\"K\">The key to map to types.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Types`1.Get(`0,System.Func{`0,System.Type})\">\r\n            <summary>\r\n            Get the type saved under the given key.\r\n            </summary>\r\n            <param name=\"key\">The key the type is saved under.</param>\r\n            <param name=\"find\">A callback to load the type for the given key.</param>\r\n            <returns>The type saved under <paramref name=\"key\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Types`1.Set(`0,System.Type)\">\r\n            <summary>\r\n            Explicitly set the type stored under the given key.\r\n            </summary>\r\n            <param name=\"key\">The key to save the type under.</param>\r\n            <param name=\"type\">The Type to cache.</param>\r\n            <returns>The type that was cached.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.Types`1.Contains(`0)\">\r\n            <summary>\r\n            Returns true if the cache contains an entry with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to check.</param>\r\n            <returns>True if an entry with the key exists.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Dynamics.DynamicType\">\r\n            <summary>\r\n            Operations on the dynamic type of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.DynamicType.Reflect(System.Object)\">\r\n            <summary>\r\n            Reflect on the dynamic type of the reference.\r\n            </summary>\r\n            <param name=\"obj\">The object with unknown type.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.DynamicType.Reflect(System.Type)\">\r\n            <summary>\r\n            Reflect on the dynamic type of the reference.\r\n            </summary>\r\n            <param name=\"objType\">The unknown object type.</param>\r\n            <returns>A function that can be used to reflect on any instance of the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Dynamics.DynamicType.Create(System.Type)\">\r\n            <summary>\r\n            Reflect on the dynamic type of the reference.\r\n            </summary>\r\n            <param name=\"objType\">The unknown object type.</param>\r\n            <returns>A function that can be used to construct uninitialized instances of the given type.</returns>\r\n        </member>\r\n        <member name=\"F:Sasa.Dynamics.DynamicType.DynamicCreate\">\r\n            <summary>\r\n            A delegate that creates constructors by dispatching into the static reflector.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Dynamics.DynamicType.DynamicDispatch\">\r\n            <summary>\r\n            Construct a method for dynamically reflecting on the given type.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Linq.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Linq</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Linq.IdentityVisitor\">\r\n            <summary>\r\n            A visitor that simply returns the expression as-is. Clients must simply override the\r\n            nodes they wish to transform.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.ExpressionVisitor`1\">\r\n            <summary>\r\n            An expression visitor base class. Each ExpressionType has a corresponding\r\n            abstract method to ensure all node types are handled.\r\n            </summary>\r\n            <remarks>Base on mattwar's excellent series:\r\n            http://blogs.msdn.com/mattwar/pages/linq-links.aspx</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Visit(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Processes the given expression by dispatching to the appropriate expression handler.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Add(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic addition without overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.AddChecked(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic addition with overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.And(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise AND operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.AndAlso(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a short-circuiting conditional AND operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.ArrayLength(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents getting the length of a one-dimensional array.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.ArrayIndex(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents indexing into a one-dimensional array.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Call(System.Linq.Expressions.MethodCallExpression)\">\r\n            <summary>\r\n            A node that represents a method call.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Coalesce(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a null coalescing operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Conditional(System.Linq.Expressions.ConditionalExpression)\">\r\n            <summary>\r\n            A node that represents a conditional operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Constant(System.Linq.Expressions.ConstantExpression)\">\r\n            <summary>\r\n            A node that represents an expression that has a constant value.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Convert(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, it overflows silently if the converted value does not\r\n            fit the target type.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.ConvertChecked(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, an exception is thrown if the converted value does\r\n            not fit the target type.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Divide(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic division.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Equal(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents an equality comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.ExclusiveOr(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise XOR operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.GreaterThan(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a \"greater than\" numeric comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.GreaterThanOrEqual(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a \"greater than or equal\" numeric comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Invoke(System.Linq.Expressions.InvocationExpression)\">\r\n            <summary>\r\n            A node that represents applying a delegate or lambda expression to a list\r\n            of argument expressions.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Lambda(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            A node that represents a lambda expression.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.LeftShift(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise left-shift operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.LessThan(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a \"less than\" numeric comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.LessThanOrEqual(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a \"less than or equal\" numeric comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.ListInit(System.Linq.Expressions.ListInitExpression)\">\r\n            <summary>\r\n            A node that represents creating a new System.Collections.IEnumerable object\r\n            and initializing it from a list of elements.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.MemberAccess(System.Linq.Expressions.MemberExpression)\">\r\n            <summary>\r\n            A node that represents reading from a field or property.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.MemberInit(System.Linq.Expressions.MemberInitExpression)\">\r\n            <summary>\r\n            A node that represents creating a new object and initializing one or more\r\n            of its members.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Modulo(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents an arithmetic remainder operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Multiply(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic multiplication without overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.MultiplyChecked(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic multiplication with overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Negate(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents an arithmetic negation operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.UnaryPlus(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents a unary plus operation. The result of a predefined\r\n            unary plus operation is simply the value of the operand, but user-defined\r\n            implementations may have non-trivial results.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.NegateChecked(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents an arithmetic negation operation that has overflow\r\n            checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.New(System.Linq.Expressions.NewExpression)\">\r\n            <summary>\r\n            A node that represents calling a constructor to create a new object.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.NewArrayInit(System.Linq.Expressions.NewArrayExpression)\">\r\n            <summary>\r\n            A node that represents creating a new one-dimensional array and initializing\r\n            it from a list of elements.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.NewArrayBounds(System.Linq.Expressions.NewArrayExpression)\">\r\n            <summary>\r\n            A node that represents creating a new array where the bounds for each dimension\r\n            are specified.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Not(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise complement operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.NotEqual(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents an inequality comparison.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Or(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise OR operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.OrElse(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a short-circuiting conditional OR operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Parameter(System.Linq.Expressions.ParameterExpression)\">\r\n            <summary>\r\n            A node that represents a reference to a parameter defined in the context\r\n            of the expression.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Power(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents raising a number to a power.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Quote(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents an expression that has a constant value of type System.Linq.Expressions.Expression.\r\n            A System.Linq.Expressions.ExpressionType.Quote node can contain references\r\n            to parameters defined in the context of the expression it represents.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.RightShift(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents a bitwise right-shift operation.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.Subtract(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic subtraction without overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.SubtractChecked(System.Linq.Expressions.BinaryExpression)\">\r\n            <summary>\r\n            A node that represents arithmetic subtraction with overflow checking.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.TypeAs(System.Linq.Expressions.UnaryExpression)\">\r\n            <summary>\r\n            A node that represents an explicit reference or boxing conversion where null\r\n            is supplied if the conversion fails.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.ExpressionVisitor`1.TypeIs(System.Linq.Expressions.TypeBinaryExpression)\">\r\n            <summary>\r\n            A node that represents a type test.\r\n            </summary>\r\n            <param name=\"e\">The expression to process.</param>\r\n            <returns>The value computed from the expression.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.ErrorVisitor`1\">\r\n            <summary>\r\n            A visitor that throws NotSupportedException for every node. Clients\r\n            must simply override the nodes they do support.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.Queryable`1\">\r\n            <summary>\r\n            A default Queryable implementation.\r\n            </summary>\r\n            <typeparam name=\"T\">The type returned by the query.</typeparam>\r\n            <remarks>Based on code provided by mattwar:\r\n            http://blogs.msdn.com/mattwar/archive/2007/07/30/linq-building-an-iqueryable-provider-part-i.aspx</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Queryable`1.#ctor(Sasa.Linq.QueryProvider,System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Construct a queryable object with the given provider and expression.\r\n            </summary>\r\n            <param name=\"provider\">The query provider.</param>\r\n            <param name=\"expression\">The query expression.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Queryable`1.GetEnumerator\">\r\n            <summary>\r\n            Execute the query and enumerate over the return values.\r\n            </summary>\r\n            <returns>An enumeration over the return values of the query.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Linq.Queryable`1.Expression\">\r\n            <summary>\r\n            The query expression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Linq.Queryable`1.ElementType\">\r\n            <summary>\r\n            The return type of the query expression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Linq.Queryable`1.Provider\">\r\n            <summary>\r\n            The query provider.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.QueryProvider\">\r\n            <summary>\r\n            A base query provider which implements much of the common functionality.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.QueryProvider.ToString(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Return the expression as a string.\r\n            </summary>\r\n            <param name=\"expression\">The expression to convert.</param>\r\n            <returns>A string representation of the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.QueryProvider.Execute``1(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Execute the expression and return the given object type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the return value.</typeparam>\r\n            <param name=\"expression\">The expression to execute.</param>\r\n            <returns>The value returned from executing the expression.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.QueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Create a typed IQueryable for this provider.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the return value.</typeparam>\r\n            <param name=\"expression\">The expression to execute used to construct the query.</param>\r\n            <returns>A query returning a value of type T.</returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Mime.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Mime</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Mime.FileExtensions\">\r\n            <summary>\r\n            A list of standard file extensions\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Mime.FileExtensions.MediaType(System.String)\">\r\n            <summary>\r\n            Return the Mime-Type given the file extension.\r\n            </summary>\r\n            <param name=\"file\">The file path, file name or file extension.</param>\r\n            <returns>The media type of the given file extension.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.FileExtensions.Application\">\r\n            <summary>\r\n            Application-specific media types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.Pdf\">\r\n            <summary>\r\n            File extension for PDF.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.Rtf\">\r\n            <summary>\r\n            File extension for RTF.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.Soap\">\r\n            <summary>\r\n            File extension for SOAP messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.Zip\">\r\n            <summary>\r\n            File extension for ZIP files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.MicrosoftWord\">\r\n            <summary>\r\n            File extension for Microsoft Word documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.MicrosoftExcel\">\r\n            <summary>\r\n            File extension for Microsoft Excel documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.MicrosoftPowerpoint\">\r\n            <summary>\r\n            File extension for Microsoft Powerpoint documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Application.Postscript\">\r\n            <summary>\r\n            File extension for Postscript documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.FileExtensions.Image\">\r\n            <summary>\r\n            Media types for images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Png\">\r\n            <summary>\r\n            File extension for PNG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Bmp\">\r\n            <summary>\r\n            File extension for BMP images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Dwg\">\r\n            <summary>\r\n            File extension for DWG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Jpeg\">\r\n            <summary>\r\n            File extension for JPEG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.JpegShort\">\r\n            <summary>\r\n            File extension for JPEG images (short version).\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Tiff\">\r\n            <summary>\r\n            File extension for TIFF images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Image.Gif\">\r\n            <summary>\r\n            File extension for GIF images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.FileExtensions.Text\">\r\n            <summary>\r\n            Media types for text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Text.Plain\">\r\n            <summary>\r\n            File extension for plain text files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Text.Html\">\r\n            <summary>\r\n            File extension for HTML files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Text.RichText\">\r\n            <summary>\r\n            File extension for rich text files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Text.Xml\">\r\n            <summary>\r\n            File extension for XML files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Text.Csv\">\r\n            <summary>\r\n            File extension for CSV files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.FileExtensions.Multipart\">\r\n            <summary>\r\n            Multipart media types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Multipart.Mixed\">\r\n            <summary>\r\n            multipart/mixed media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Multipart.Digest\">\r\n            <summary>\r\n            multipart/digest media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Multipart.Alternative\">\r\n            <summary>\r\n            multipart/alternative media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.FileExtensions.Message\">\r\n            <summary>\r\n            Message media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.FileExtensions.Message.Rfc822\">\r\n            <summary>\r\n            message/rfc822 media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes\">\r\n            <summary>\r\n            Additional media types not ommitted for System.Net.Mime.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Mime.MediaTypes.GetMediaTypes\">\r\n            <summary>\r\n            Return the sequence of all known media types.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Mime.MediaTypes.GetFileExtensions\">\r\n            <summary>\r\n            Return the sequence of all known file extensions.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Mime.MediaTypes.FileExtension(System.String)\">\r\n            <summary>\r\n            Convert the given media type into the corresponding file extension.\r\n            </summary>\r\n            <param name=\"mediaType\">The internet media type.</param>\r\n            <returns>The file extension used for that media type.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes.Application\">\r\n            <summary>\r\n            Application-specific media types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Pdf\">\r\n            <summary>\r\n            Media type for PDF files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Rtf\">\r\n            <summary>\r\n            Media type for RTF Df files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Soap\">\r\n            <summary>\r\n            Media type for SOAP messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Zip\">\r\n            <summary>\r\n            Media type for ZIP files.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.MicrosoftWord\">\r\n            <summary>\r\n            Media type for Microsoft Word documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.MicrosoftExcel\">\r\n            <summary>\r\n            Media type for Microsoft Excel documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.MicrosoftPowerpoint\">\r\n            <summary>\r\n            Media type for Microsoft Powerpoint documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Postscript\">\r\n            <summary>\r\n            Media type for Postscript documents.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Application.Octet\">\r\n            <summary>\r\n            Media type for a binary file.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes.Image\">\r\n            <summary>\r\n            Media types for images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Png\">\r\n            <summary>\r\n            Media type for PNG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Bmp\">\r\n            <summary>\r\n            Media type for BMP images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Dwg\">\r\n            <summary>\r\n            Media type for DWG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Jpeg\">\r\n            <summary>\r\n            Media type for JPEG images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Tiff\">\r\n            <summary>\r\n            Media type for TIFF images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Image.Gif\">\r\n            <summary>\r\n            Media type for GIF images.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes.Text\">\r\n            <summary>\r\n            Media types for text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Text.Plain\">\r\n            <summary>\r\n            Media type for plain text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Text.Html\">\r\n            <summary>\r\n            Media type for HTML.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Text.RichText\">\r\n            <summary>\r\n            Media type for rich text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Text.Xml\">\r\n            <summary>\r\n            Media type for XML.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Text.Csv\">\r\n            <summary>\r\n            Media type for CSV.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes.Multipart\">\r\n            <summary>\r\n            Multipart media types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Multipart.Mixed\">\r\n            <summary>\r\n            multipart/mixed media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Multipart.Digest\">\r\n            <summary>\r\n            multipart/digest media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Multipart.Alternative\">\r\n            <summary>\r\n            multipart/alternative media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Mime.MediaTypes.Message\">\r\n            <summary>\r\n            Message media type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Mime.MediaTypes.Message.Rfc822\">\r\n            <summary>\r\n            message/rfc822 media type.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Net.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Net</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Net.Mail.QuotedPrintable\">\r\n            <summary>\r\n            A quoted-printable encoder/decoder.\r\n            </summary>\r\n            <remarks>\r\n            References:\r\n            http://www.freesoft.org/CIE/RFC/1521/6.htm\r\n            http://www.technology.niagarac.on.ca/courses/comp530/images/AsciiTable.jpg\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.QuotedPrintable.ToQuotedPrintable(System.String)\">\r\n            <summary>\r\n            Encode the given string in quoted-printable encoding.\r\n            </summary>\r\n            <param name=\"input\">The string to encode.</param>\r\n            <returns>The quoted-printable encoded string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.QuotedPrintable.ToQuotedPrintable(System.Char)\">\r\n            <summary>\r\n            Encode a character in quoted-printable encoding.\r\n            </summary>\r\n            <param name=\"c\">The character to encode.</param>\r\n            <returns>The encoded character.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.QuotedPrintable.FromQuotedPrintable(System.String,System.Int32)\">\r\n            <summary>\r\n            Decodes a quoted-printable encoded character.\r\n            </summary>\r\n            <param name=\"input\">The string to decode.</param>\r\n            <param name=\"index\">The index to start decoding.</param>\r\n            <returns>The decoded char.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.QuotedPrintable.FromQuotedPrintable(System.String)\">\r\n            <summary>\r\n            Decodes a quoted-printable encoded string.\r\n            </summary>\r\n            <param name=\"input\">The string to decode.</param>\r\n            <returns>The decoded string.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Pop3.Pop3\">\r\n            <summary>\r\n            Implements the low-level pop3 protocol on a Texty instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3.ExecuteChecked(Sasa.Net.Texty,System.String)\">\r\n            <summary>\r\n            Runs a server command and checks for a valid response code.\r\n            </summary>\r\n            <param name=\"server\">The server connection.</param>\r\n            <param name=\"command\">The command to run.</param>\r\n            <returns>The checked response string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3.CheckOk(System.String,System.String)\">\r\n            <summary>\r\n            Checks a response for a valid response code.\r\n            </summary>\r\n            <param name=\"response\">The response to check.</param>\r\n            <param name=\"cmd\">The command that was run.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3.IsCRLF(System.String,System.Int32)\">\r\n            <summary>\r\n            Checks that a CRLF is at the given index.\r\n            </summary>\r\n            <param name=\"line\"></param>\r\n            <param name=\"starts\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Mail.Message\">\r\n            <summary>\r\n            Extension methods to parse and process MailMessages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Net.Mail.Message.LineLength\">\r\n            <summary>\r\n            The line length for e-mail messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ParseMailMessage(System.String)\">\r\n            <summary>\r\n            Parse a string into a MailMessage.\r\n            </summary>\r\n            <param name=\"raw\">The e-mail in raw string format.</param>\r\n            <returns>A MailMessage object initialized from parsing the raw string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.DecodeSubject(System.String)\">\r\n            <summary>\r\n            Decodes a subject line.\r\n            </summary>\r\n            <param name=\"subject\">The encoded subject line.</param>\r\n            <returns>A decoded subject line.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.split(System.Net.Mail.MailAddressCollection,System.Collections.Generic.KeyValuePair{System.String,System.String})\">\r\n            <summary>\r\n            Split the header value into multiple addresses and add them to the collection.\r\n            </summary>\r\n            <param name=\"m\">The address collection to modify.</param>\r\n            <param name=\"nv\">The header.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.DecodeBody(System.String,System.Int32,System.Int32,System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Decode the e-mail body given the raw message string, and the Content-Transfer-Encoding.\r\n            </summary>\r\n            <param name=\"raw\">The raw message string.</param>\r\n            <param name=\"start\">The index at which to start decoding.</param>\r\n            <param name=\"length\">The length of the message body.</param>\r\n            <param name=\"contentTransferEncoding\">The Content-Transfer-Encoding of the body.</param>\r\n            <returns>The decoded body of the e-mail.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.EncodeBody(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Encode the e-mail body given the raw body string, and the Content-Transfer-Encoding.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message.</param>\r\n            <returns>The encoded body of the e-mail.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ContentType(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Returns the Content-Type for the e-mail.\r\n            </summary>\r\n            <param name=\"email\">The e-mail to inspect.</param>\r\n            <returns>The Content-Type in the e-mail headers.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.MessageId(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Returns the Message-ID header of the e-mail.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <returns>The Message-ID header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ContentTransferEncoding(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Returns the Content-Transfer-Encoding header of the e-mail.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <returns>The Content-Transfer-Encoding header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ContentTransferEncoding(System.Net.Mail.MailMessage,System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Sets the Content-Transfer-Encoding header.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <param name=\"value\">The value of the header.</param>\r\n            <returns>The In-Reply-To header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.MessageId(System.Net.Mail.MailMessage,System.String)\">\r\n            <summary>\r\n            Sets the Message-ID header.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <param name=\"value\">The value of the header.</param>\r\n            <returns>The In-Reply-To header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ThreadIndex(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Returns the Thread-Index header.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <returns>The Thread-Index header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.InReplyTo(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Returns the In-Reply-To header.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <returns>The In-Reply-To header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.InReplyTo(System.Net.Mail.MailMessage,System.String)\">\r\n            <summary>\r\n            Sets the In-Reply-To header.\r\n            </summary>\r\n            <param name=\"email\">The e-mail message to process.</param>\r\n            <param name=\"value\">The value of the header.</param>\r\n            <returns>The In-Reply-To header value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.Reply(System.Net.Mail.MailMessage,System.String)\">\r\n            <summary>\r\n            Construct a reply from the original MailMessage.\r\n            </summary>\r\n            <param name=\"email\">The e-mail to reply to.</param>\r\n            <param name=\"txt\">The body of the reply.</param>\r\n            <returns>A new MailMessage corresponding to a reply to the given MailMessage.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Message.ToRaw(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Writes the message to a string in the given encoding.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Pop3.Pop3Header\">\r\n            <summary>\r\n            Represents a pop3 header.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.#ctor(System.String)\">\r\n            <summary>\r\n            Parse a header returned by a pop3 server.\r\n            </summary>\r\n            <param name=\"line\">The header returned by the server.</param>\r\n            <remarks>The format of a header is:\r\n            MessageNumber[whitespace]ByteCount</remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.ToString\">\r\n            <summary>\r\n            Return a string representation of this header.\r\n            </summary>\r\n            <returns>The header formatted as a pop3 server would return it.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.Equals(Sasa.Net.Pop3.Pop3Header)\">\r\n            <summary>\r\n            Compare two Pop3Header for equality.\r\n            </summary>\r\n            <param name=\"other\">The instance to compare against.</param>\r\n            <returns>True if they are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.Equals(System.Object)\">\r\n            <summary>\r\n            Compare two objects for equality.\r\n            </summary>\r\n            <param name=\"obj\">The object to compare against.</param>\r\n            <returns>True if equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.GetHashCode\">\r\n            <summary>\r\n            Hash code of the header.\r\n            </summary>\r\n            <returns>Hash code of the header.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.op_Equality(Sasa.Net.Pop3.Pop3Header,Sasa.Net.Pop3.Pop3Header)\">\r\n            <summary>\r\n            Compares two Pop3Header values for equality.\r\n            </summary>\r\n            <param name=\"first\">The first Pop3Header.</param>\r\n            <param name=\"second\">The second Pop3Header.</param>\r\n            <returns>Returns true if the Pop3Headers are equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Header.op_Inequality(Sasa.Net.Pop3.Pop3Header,Sasa.Net.Pop3.Pop3Header)\">\r\n            <summary>\r\n            Compares two Pop3Header values for inequality.\r\n            </summary>\r\n            <param name=\"first\">The first Pop3Header.</param>\r\n            <param name=\"second\">The second Pop3Header.</param>\r\n            <returns>Returns true if the Pop3Headers are not equal, and false otherwise.</returns>>\r\n        </member>\r\n        <member name=\"P:Sasa.Net.Pop3.Pop3Header.MessageNumber\">\r\n            <summary>\r\n            The message number on the server.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Net.Pop3.Pop3Header.ByteCount\">\r\n            <summary>\r\n            The alleged number of bytes in the message.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Mail.Mime\">\r\n            <summary>\r\n            MIME parsing functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.ToTransferEncoding(System.String)\">\r\n            <summary>\r\n            Parse the given string for a Content-Transfer-Encoding value.\r\n            </summary>\r\n            <param name=\"transferEncoding\">The string to parse.</param>\r\n            <returns>The TransferEncoding embedded in the string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.FromTransferEncoding(System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Returns a string representation of the Content-Transfer-Encoding.\r\n            </summary>\r\n            <param name=\"transferEncoding\">The TransferEncoding to transform.</param>\r\n            <returns>The canonical string representation of the TransferEncoding.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.RealBoundary(System.Net.Mime.ContentType)\">\r\n            <summary>\r\n            Creates a boundary string as in raw messages.\r\n            </summary>\r\n            <param name=\"contentType\">The ContentType whose boundary we use.</param>\r\n            <returns>Returns the string that is used as a real boundary in a raw message.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.ParseMime(System.String,System.Int32,System.Net.Mime.ContentType,System.Net.Mime.ContentDisposition,System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Parse a MIME message.\r\n            </summary>\r\n            <param name=\"message\">The raw message string.</param>\r\n            <param name=\"offset\">The index at which to begin parsing.</param>\r\n            <param name=\"contentType\">The Content-Type at 'offset'.</param>\r\n            <param name=\"contentDisposition\">The Content-Disposition at 'offset'.</param>\r\n            <param name=\"transferEncoding\">The Transfer-Encoding at 'offset'.</param>\r\n            <returns>A sequence of attachments corresponding to the embedded MIME messages.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.Decode(System.String,System.Int32,System.Int32,System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Decode the e-mail body given the raw message string, and the Content-Transfer-Encoding.\r\n            </summary>\r\n            <param name=\"raw\">The raw message string.</param>\r\n            <param name=\"start\">The index at which to start decoding.</param>\r\n            <param name=\"length\">The length of the message body.</param>\r\n            <param name=\"contentTransferEncoding\">The Content-Transfer-Encoding of the body.</param>\r\n            <returns>The decoded body of the e-mail.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.Encode(System.Byte[],System.Net.Mime.TransferEncoding)\">\r\n            <summary>\r\n            Encode the raw bytes as a string according to the Content-Transfer-Encoding.\r\n            </summary>\r\n            <param name=\"data\">The raw data bytes.</param>\r\n            <param name=\"contentTransferEncoding\">The Content-Transfer-Encoding of the body.</param>\r\n            <returns>The decoded body of the e-mail.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.HasMultipleParts(System.Net.Mime.ContentType)\">\r\n            <summary>\r\n            Check if the Content-Type indicates the message has multiple parts.\r\n            </summary>\r\n            <param name=\"contentType\">The ContentType to check.</param>\r\n            <returns>Returns true if the Content-Type indicates the message has multiple parts.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Mail.Mime.ToContentType(System.String)\">\r\n            <summary>\r\n            Parse a string representation of Content-Type.\r\n            </summary>\r\n            <param name=\"contentType\">The string to parse.</param>\r\n            <returns>The concrete ContentType corresponding to the string.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Rfc.Rfc822\">\r\n            <summary>\r\n            A parser for RFC 822 strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Rfc.Rfc822.ParseHeaders(System.String,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Return an enumeration of key-value pairs for all the headers in the given string.\r\n            </summary>\r\n            <param name=\"buffer\">The raw string containing the headers.</param>\r\n            <param name=\"offset\">The index to begin parsing headers.</param>\r\n            <param name=\"length\">The length of the headers.</param>\r\n            <returns>An enumeration of header:value pairs.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Rfc.Rfc822.HeaderLength(System.String,System.Int32)\">\r\n            <summary>\r\n            Compute the length of the headers based on the expected terminators.\r\n            </summary>\r\n            <param name=\"buffer\">The string containing the headers.</param>\r\n            <param name=\"start\">The index to begin parsing the headers.</param>\r\n            <returns>The length in characters of the headers.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Pop3.Pop3Client\">\r\n            <summary>\r\n            Implements the client-side POP3 connection protocol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Client.#ctor(System.Net.NetworkCredential,System.Func{System.IO.TextReader},System.Func{System.IO.TextWriter})\">\r\n            <summary>\r\n            Returns a Pop3Client constructed from two arbitrary text stream generators.\r\n            </summary>\r\n            <param name=\"read\">The input stream generator.</param>\r\n            <param name=\"write\">The output stream generator.</param>\r\n            <param name=\"credentials\">The credentials to use when connecting.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Client.#ctor(System.Func{System.IO.TextReader},System.Func{System.IO.TextWriter})\">\r\n            <summary>\r\n            Returns a Pop3Client constructed from two arbitrary text stream generators.\r\n            </summary>\r\n            <param name=\"read\">The input stream generator.</param>\r\n            <param name=\"write\">The output stream generator.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Client.Connect(System.Action{Sasa.Net.Pop3.Pop3Session})\">\r\n            <summary>\r\n            Connect to the pop3 server and run a session.\r\n            </summary>\r\n            <param name=\"runSession\">The body of the session.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Client.Connect``1(System.Func{Sasa.Net.Pop3.Pop3Session,``0})\">\r\n            <summary>\r\n            Connect to the pop3 server and run a session.\r\n            </summary>\r\n            <typeparam name=\"R\">The type of the value returned.</typeparam>\r\n            <param name=\"runSession\">The body of the session.</param>\r\n            <returns>A value computed after a session is run.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Client.LogOn\">\r\n            <summary>\r\n            Log on to the server with the given credentials.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Net.Pop3.Pop3Client.Credentials\">\r\n            <summary>\r\n            The credentials to use when logging on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Texty\">\r\n            <summary>\r\n            Abstracts text-based protocols.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Texty.#ctor(System.IO.TextReader,System.IO.TextWriter)\">\r\n            <summary>\r\n            Construct a new instance of a Texty-protocol stream.\r\n            </summary>\r\n            <param name=\"input\">The input text stream.</param>\r\n            <param name=\"output\">The output text stream.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Texty.Execute(System.String)\">\r\n            <summary>\r\n            Sends a command to be executed on the server.\r\n            </summary>\r\n            <param name=\"command\">The command to send.</param>\r\n            <returns>The response sent by the server.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Texty.Send(System.String)\">\r\n            <summary>\r\n            Send data to the server.\r\n            </summary>\r\n            <param name=\"data\">The data to send.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Texty.ReadLine\">\r\n            <summary>\r\n            Read the most recent response sent by the server.\r\n            </summary>\r\n            <returns>The most recent response.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Texty.Dispose\">\r\n            <summary>\r\n            Dispose any resources used by this instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.Pop3.Pop3Session\">\r\n            <summary>\r\n            Implements the client-side pop3 session protocol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.#ctor(Sasa.Net.Texty)\">\r\n            <summary>\r\n            Returns a Pop3Client constructed from two arbitrary text streams.\r\n            </summary>\r\n            <param name=\"server\">The Texty instance used for communication.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.List\">\r\n            <summary>\r\n            List the messages available on the server.\r\n            </summary>\r\n            <returns>The list of available messages.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.Retrieve(Sasa.Net.Pop3.Pop3Header)\">\r\n            <summary>\r\n            Retrieve the given message from the server.\r\n            </summary>\r\n            <param name=\"header\">The message to retrieve.</param>\r\n            <returns>The message string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.Delete(Sasa.Net.Pop3.Pop3Header)\">\r\n            <summary>\r\n            Delete the given message from the server.\r\n            </summary>\r\n            <param name=\"header\">The message to delete.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.Reset\">\r\n            <summary>\r\n            Undoes any deletions made during this session.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.Quit\">\r\n            <summary>\r\n            Send the QUIT command and terminate the connection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.Pop3.Pop3Session.Dispose\">\r\n            <summary>\r\n            Dispose of the pop3 connection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Net.InvalidResponseException\">\r\n            <summary>\r\n            An invalid response was generated from the server.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Net.InvalidResponseException.#ctor(System.String)\">\r\n            <summary>\r\n            Construct a new InvalidResponseException.\r\n            </summary>\r\n            <param name=\"m\">The string describing the error.</param>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Operators.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Operators</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Operators.Arithmetic`1\">\r\n            <summary>\r\n            Class encapsulating the polymorphic number opcodes.\r\n            </summary>\r\n            <remarks>\r\n            WARNING: this class is only safe to use for the primitive numeric types for which add, subtract, etc. opcodes are defined.\r\n            </remarks>\r\n            <typeparam name=\"T\">The type implementing arithmetic operators.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Add(`0,`0)\">\r\n            <summary>\r\n            Adds two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Subtract(`0,`0)\">\r\n            <summary>\r\n            Subtracts two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Divide(`0,`0)\">\r\n            <summary>\r\n            Divide two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Multiply(`0,`0)\">\r\n            <summary>\r\n            Multiply two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Remainder(`0,`0)\">\r\n            <summary>\r\n            Modulus two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Arithmetic`1.Negate(`0)\">\r\n            <summary>\r\n            Negates an argument.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Operators.Logical`1\">\r\n            <summary>\r\n            Class encapsulating the polymorphic number opcodes.\r\n            </summary>\r\n            <remarks>\r\n            WARNING: this class is only safe to use for the primitive logical types for which and, or, etc. opcodes are defined.\r\n            </remarks>\r\n            <typeparam name=\"T\">The type implementing the logical operators.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Logical`1.And(`0,`0)\">\r\n            <summary>\r\n            AND of two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Logical`1.Or(`0,`0)\">\r\n            <summary>\r\n            OR of two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Logical`1.Xor(`0,`0)\">\r\n            <summary>\r\n            XOR of two arguments.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <param name=\"arg1\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Operators.Logical`1.Not(`0)\">\r\n            <summary>\r\n            Negates an argument.\r\n            </summary>\r\n            <param name=\"arg0\"></param>\r\n            <returns></returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Parsing.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Parsing</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Parsing.Pratt.Token`1\">\r\n            <summary>\r\n            A semantic token encapsulating all the information needed to\r\n            parse a lexed input.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value parsed by the token.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Token`1.#ctor(System.String,System.Int32)\">\r\n            <summary>\r\n            Create a semantic token.\r\n            </summary>\r\n            <param name=\"id\">The token identifier; sometimes this is the symbol itself.</param>\r\n            <param name=\"leftBindingPower\">The left binding power, aka precedence.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Token`1.Nud(Sasa.Parsing.Pratt.PrattParser{`0})\">\r\n            <summary>\r\n            Execute the null denotation function of this token.\r\n            </summary>\r\n            <returns>The value for the null denotation of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Token`1.Led(Sasa.Parsing.Pratt.PrattParser{`0},`0)\">\r\n            <summary>\r\n            Execute the left denotation function of this token.\r\n            </summary>\r\n            <param name=\"parser\">The parser state.</param>\r\n            <param name=\"left\">The value to the left of this token.</param>\r\n            <returns>The left denotation of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Token`1.ToString\">\r\n            <summary>\r\n            Returns a string representation of this token.\r\n            </summary>\r\n            <returns>A string representation of this token.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Token`1.Id\">\r\n            <summary>\r\n            The token identifier.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Token`1.LeftBindingPower\">\r\n            <summary>\r\n            \"Stickiness\" to the left.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Token`1.NullDenotation\">\r\n            <summary>\r\n            Node has nothing to its left, ie. prefix. The null denotation\r\n            is transparently memoized by <see cref=\"T:Sasa.Lazy`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Token`1.LeftDenotation\">\r\n            <summary>\r\n            Node has something to the left, ie. postfix or infix.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Parsing.Pratt.Scanner\">\r\n            <summary>\r\n            A function that scans <paramref name=\"input\"/> starting from <paramref name=\"start\"/>\r\n            for a specific pattern. The return value is the new parser position.\r\n            </summary>\r\n            <param name=\"input\">The parser input string.</param>\r\n            <param name=\"start\">The index to start searching.</param>\r\n            <returns>The index the match completed.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Parsing.Pratt.Grammar`1\">\r\n            <summary>\r\n            Inherit from this class to implement a typed grammar.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of values parsed from the input.</typeparam>\r\n            <remarks>\r\n            Implements a simple single-state Pratt-style parser with a longest\r\n            match precedence-based lexer. Clients need only inherit from this class,\r\n            specify the type of elements being parsed, and in the constructor function\r\n            specifying the set of parsable operators with the associated semantic action.\r\n            \r\n            Pratt-parsers are effectively Turing complete, so they can parse any grammar imaginable,\r\n            although the predefined combinators encourage context-free grammars.\r\n            \r\n            References:\r\n            <ul>\r\n            <li><a href=\"http://effbot.org/zone/simple-top-down-parsing.htm\">http://effbot.org/zone/simple-top-down-parsing.htm</a></li>\r\n            <li><a href=\"http://javascript.crockford.com/tdop/tdop.html\">http://javascript.crockford.com/tdop/tdop.html</a></li>\r\n            </ul>\r\n            </remarks>\r\n            <example>\r\n            Here is a simple calculator as an example:\r\n            <code>\r\n            class Calculator : Grammar&lt;int&gt;\r\n            {\r\n                public Calculator()\r\n                {\r\n                    Infix(\"+\", 10, Add);   Infix(\"-\", 10, Sub);\r\n                    Infix(\"*\", 20, Mul);   Infix(\"/\", 20, Div);\r\n                    InfixR(\"^\", 30, Pow);  Postfix(\"!\", 30, Fact);\r\n                    Prefix(\"-\", 100, Neg); Prefix(\"+\", 100, Pos);\r\n                    Group(\"(\", \")\", int.MaxValue);\r\n                    Match(\"(digit)\", char.IsDigit, 1, Int);\r\n                    SkipWhile(char.IsWhiteSpace);\r\n                }\r\n            \r\n                int Int(string lit) { return int.Parse(lit); }\r\n                int Add(int lhs, int rhs) { return lhs + rhs; }\r\n                int Sub(int lhs, int rhs) { return lhs - rhs; }\r\n                int Mul(int lhs, int rhs) { return lhs * rhs; }\r\n                int Div(int lhs, int rhs) { return lhs / rhs; }\r\n                int Pow(int lhs, int rhs) { return (int)Math.Pow(lhs, rhs); }\r\n                int Neg(int arg) { return -arg; }\r\n                int Pos(int arg) { return arg; }\r\n                int Fact(int arg)\r\n                {\r\n                    return arg == 0 || arg == 1 ? 1 : arg * Fact(arg - 1);\r\n                }\r\n            }\r\n            </code>\r\n            </example>\r\n            <exception cref=\"T:Sasa.Parsing.ParseException\">Thrown if the parser encounters any errors, such as unknown symbols.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Symbol(System.String)\">\r\n            <summary>\r\n            Generates a symbol.\r\n            </summary>\r\n            <param name=\"sym\">The symbol identifier.</param>\r\n            <returns>A symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Symbol(System.String,System.Int32)\">\r\n            <summary>\r\n            Generates a symbol with the given left binding power.\r\n            </summary>\r\n            <param name=\"sym\">The symbol identifier.</param>\r\n            <param name=\"lbp\">The left binding power.</param>\r\n            <returns>A symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Match(System.String,System.Predicate{System.Char},System.Int32,System.Func{System.String,`0})\">\r\n            <summary>\r\n            A symbol that matches a character predicate.\r\n            </summary>\r\n            <param name=\"id\">The identifier for this symbol.</param>\r\n            <param name=\"pred\">A predicate over characters identifying legitimate members.</param>\r\n            <param name=\"bindingPower\">Operator's binding power.</param>\r\n            <param name=\"selector\">Parsing function taking a string to a <typeparamref name=\"T\"/>.</param>\r\n            <returns>Literal symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Prefix(System.String,System.Int32,System.Func{`0,`0})\">\r\n            <summary>\r\n            Generate a prefix symbol.\r\n            </summary>\r\n            <param name=\"op\">Prefix operator symbol.</param>\r\n            <param name=\"bindingPower\">Operator's binding power.</param>\r\n            <param name=\"selector\">Mapping function.</param>\r\n            <returns>Prefix operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Postfix(System.String,System.Int32,System.Func{`0,`0})\">\r\n            <summary>\r\n            Generate a postfix operator symbol.\r\n            </summary>\r\n            <param name=\"op\">The operator symbol.</param>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"selector\">The function transforming the postfix token.</param>\r\n            <returns>A postfix operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Infix(System.String,System.Int32,System.Func{`0,`0,`0})\">\r\n            <summary>\r\n            Left-associative infix symbol.\r\n            </summary>\r\n            <param name=\"op\">The operator symbol.</param>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"selector\">The function transforming the infix token.</param>\r\n            <returns>A right-associative operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.InfixR(System.String,System.Int32,System.Func{`0,`0,`0})\">\r\n            <summary>\r\n            Right-associative infix symbol.\r\n            </summary>\r\n            <param name=\"op\">The operator symbol.</param>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"selector\">The function transforming the infix token.</param>\r\n            <returns>A right-associative operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.TernaryInfix(System.String,System.String,System.Int32,System.Func{`0,`0,`0,`0})\">\r\n            <summary>\r\n            Ternary operators, like \"e ? e : e\".\r\n            </summary>\r\n            <param name=\"infix0\">The first infix symbol of the ternary operator.</param>\r\n            <param name=\"infix1\">The second infix symbol of the ternary operator.</param>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"parse\">The parsing function for each branch.</param>\r\n            <returns>A ternary operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.TernaryPrefix(System.String,System.String,System.String,System.Int32,System.Func{`0,`0,`0,`0})\">\r\n            <summary>\r\n            Ternary operators, like \"if e then e else e\".\r\n            </summary>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"prefix\">The symbol starting the ternary operator.</param>\r\n            <param name=\"infix0\">The first infix symbol in the operator.</param>\r\n            <param name=\"infix1\">The second infix symbol in the operator.</param>\r\n            <param name=\"parse\">The parsing function.</param>\r\n            <returns>A ternary operator symbol.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Group(System.String,System.String,System.Int32)\">\r\n            <summary>\r\n            A grouping operator, typically parenthesis of some sort.\r\n            </summary>\r\n            <param name=\"bindingPower\">The binding power of the operator.</param>\r\n            <param name=\"leftGrouping\">The left grouping symbol.</param>\r\n            <param name=\"rightGrouping\">The right grouping symbol.</param>\r\n            <returns>A grouping operator.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.SkipWhile(System.Predicate{System.Char})\">\r\n            <summary>\r\n            Creates a symbol for characters that are to be skipped, whitespace for example.\r\n            </summary>\r\n            <param name=\"pred\">The predicate determing the characters to skip.</param>\r\n            <returns>A symbol for skipped characters.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Skip(Sasa.Parsing.Pratt.Scanner)\">\r\n            <summary>\r\n            Creates a symbol for characters that are to be skipped, whitespace for example.\r\n            </summary>\r\n            <param name=\"scanner\">The scanner identifying the characters to skip.</param>\r\n            <returns>A symbol for skipped characters.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Parse(System.String)\">\r\n            <summary>\r\n            Parse the given text and return the corresponding value, or throw a parse error.\r\n            </summary>\r\n            <param name=\"text\">The text to parse.</param>\r\n            <returns>The value parsed from the text.</returns>\r\n            <exception cref=\"T:Sasa.Parsing.ParseException\">Thrown when the text has an invalid structure.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Any(System.String[])\">\r\n            <summary>\r\n            A scanner that matches any in a sequence of tokens.\r\n            </summary>\r\n            <param name=\"tokens\">The list of tokens to match.</param>\r\n            <returns>A Scanner that matches the given tokens.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.ScanLiteral(System.String)\">\r\n            <summary>\r\n            A scanner that matches a literal value.\r\n            </summary>\r\n            <param name=\"lit\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.While(System.Predicate{System.Char})\">\r\n            <summary>\r\n            Returns a scanner forwards the stream while a predicate is satisfied.\r\n            </summary>\r\n            <param name=\"pred\">Predicate on characters.</param>\r\n            <returns>Scanner that uses the predicate to determine the end of a match.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.WhiteSpace(System.String,System.Int32)\">\r\n            <summary>\r\n            A scanner for whitespace.\r\n            </summary>\r\n            <param name=\"input\">The input string to scan.</param>\r\n            <param name=\"start\">The index to start scanning.</param>\r\n            <returns>The end of the scan.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Digits(System.String,System.Int32)\">\r\n            <summary>\r\n            A scanner for digits.\r\n            </summary>\r\n            <param name=\"input\">The input string to scan.</param>\r\n            <param name=\"start\">The index to start scanning.</param>\r\n            <returns>The end of the scan.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Letters(System.String,System.Int32)\">\r\n            <summary>\r\n            A scanner for letters.\r\n            </summary>\r\n            <param name=\"input\">The input string to scan.</param>\r\n            <param name=\"start\">The index to start scanning.</param>\r\n            <returns>The end of the scan.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.LettersOrDigits(System.String,System.Int32)\">\r\n            <summary>\r\n            A scanner for letters or digits.\r\n            </summary>\r\n            <param name=\"input\">The input string to scan.</param>\r\n            <param name=\"start\">The index to start scanning.</param>\r\n            <returns>The end of the scan.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Grammar`1.Char(System.Char)\">\r\n            <summary>\r\n            Scanner for a particular character.\r\n            </summary>\r\n            <param name=\"c\">The character to scan for.</param>\r\n            <returns>The end of the scan.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Parsing.Pratt.PrattParser`1\">\r\n            <summary>\r\n            A parser for a given input text.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to be parsed from the text.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.PrattParser`1.Parse(System.Int32)\">\r\n            <summary>\r\n            Parse the next token sequence given the right binding power.\r\n            </summary>\r\n            <param name=\"rbp\">The right binding power to use when parsing.</param>\r\n            <returns>The next parsed value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.PrattParser`1.Advance(System.String)\">\r\n            <summary>\r\n            Checks that the current token matches the expected token specified by <paramref name=\"id\"/>.\r\n            </summary>\r\n            <param name=\"id\">The expected token identifier.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.PrattParser`1.End\">\r\n            <summary>\r\n            The token delimiting the end of the token stream.\r\n            </summary>\r\n            <returns>The end token.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.PrattParser`1.Fail(System.String)\">\r\n            <summary>\r\n            Throws a formatted syntax failure exception.\r\n            </summary>\r\n            <param name=\"reason\">The reason for the failure.</param>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.PrattParser`1.Token\">\r\n            <summary>\r\n            The current token in the stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Parsing.Pratt.Symbol`1\">\r\n            <summary>\r\n            A symbol definition.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of parser values.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Symbol`1.#ctor(System.String)\">\r\n            <summary>\r\n            Construct a new Symbol.\r\n            </summary>\r\n            <param name=\"id\">The symbol identifier.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Symbol`1.Scan(System.String,System.Int32)\">\r\n            <summary>\r\n            Check whether the current symbol matches the input string.\r\n            </summary>\r\n            <param name=\"input\">The input string to scan.</param>\r\n            <param name=\"pos\">The position to start scanning.</param>\r\n            <returns>The index at which the scan completed.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.Pratt.Symbol`1.Matched(System.String)\">\r\n            <summary>\r\n            Returns the token for this symbol that matched the given value.\r\n            </summary>\r\n            <param name=\"value\">The value matched to this symbol.</param>\r\n            <returns>The token value derived from this symbol.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Id\">\r\n            <summary>\r\n            The symbol identifier.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Scanner\">\r\n            <summary>\r\n            The scanner for this type of symbol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.LeftBindingPower\">\r\n            <summary>\r\n            The left binding power of the tokens generated from this symbol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Nud\">\r\n            <summary>\r\n            The null denotation of the tokens generated from this symbol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Led\">\r\n            <summary>\r\n            The left denotation of the tokens generated from this symbol.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Parse\">\r\n            <summary>\r\n            The function used to parse literals or identifiers, if applicable.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Parsing.Pratt.Symbol`1.Skip\">\r\n            <summary>\r\n            A flag indicating whether symbols of this type should be ignored\r\n            when generating tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Parsing.ParseException\">\r\n            <summary>\r\n            Describes a parse error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Parsing.ParseException.#ctor(System.String)\">\r\n            <summary>\r\n            Constructs a new exception.\r\n            </summary>\r\n            <param name=\"error\">The reason for the parse error.</param>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Serialization.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Serialization</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Serialization.Unsafe.IUnsafeSerializable\">\r\n            <summary>\r\n            This is an interface used for ultra-compact serialization. Implementors declare a \r\n            single method which specifying all of the fields with their given types.\r\n            </summary>\r\n            <remarks>\r\n            This declarative interface suffices to both serialize and deserialize objects. The\r\n            order of the specified fields is significant, so you cannot re-order the calls in\r\n            Serialize once you have objects that have been serialized.\r\n            \r\n            A simple implementation:\r\n            <code>\r\n            public Foo : ICompactSerializable {\r\n              int baz;\r\n              string bar;\r\n              \r\n              public Serialize(ICompactSerializer ic) {\r\n                ic.Int32(ref baz);\r\n                ic.String(ref bar);\r\n              }\r\n            }\r\n            </code>\r\n            For instance, if the field 'bar' is deleted, and a field 'sum' is added, the object\r\n            will look like this:\r\n            <code>\r\n            public Foo : ICompactSerializable {\r\n              int baz;\r\n              int sum;\r\n              \r\n              public Serialize(ICompactSerializer ic) {\r\n                ic.Int32(ref baz);\r\n                string bar = null;\r\n                ic.String(ref bar);\r\n                ic.Int32(ref sum);\r\n              }\r\n            }\r\n            </code>\r\n            After a user-specified period of time, or a full schema upgrade is performed, the\r\n            extra code can be removed.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializable.Serialize``1(``0)\">\r\n            <summary>\r\n            Serialize this object using the given serializer.\r\n            </summary>\r\n            <param name=\"serializer\">The serializer used to describe the internal structure\r\n            of the current object.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.Unsafe.Binary.BinarySerializer\">\r\n            <summary>\r\n            An unsafe binary serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.Unsafe.IUnsafeSerializer\">\r\n            <summary>\r\n            An ultra-compact serializer interface.\r\n            </summary>\r\n            <remarks>\r\n            This interface describes both serializers and deserializers. These serializers\r\n            perform no safety checks, not even type-safety.\r\n            \r\n            Serializable objects simply describe the structure of the type using this interface.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Bool(System.Boolean@)\">\r\n            <summary>\r\n            Serialize/deserialize a bool.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the bool field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Int16(System.Int16@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int16.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the Int16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.UInt16(System.UInt16@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt16.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Int32(System.Int32@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int32.\r\n            </summary>\r\n            <param name=\"i\">A pointer to the Int32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.UInt32(System.UInt32@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt32.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Int64(System.Int64@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int64.\r\n            </summary>\r\n            <param name=\"l\">A pointer to the Int64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.UInt64(System.UInt64@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt64.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Char(System.Char@)\">\r\n            <summary>\r\n            Serialize/deserialize a char.\r\n            </summary>\r\n            <param name=\"c\">A pointer to the char field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Byte(System.Byte@)\">\r\n            <summary>\r\n            Serialize/deserialize a Byte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.SByte(System.SByte@)\">\r\n            <summary>\r\n            Serialize/deserialize an SByte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the SByte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.String(System.String@)\">\r\n            <summary>\r\n            Serialize/deserialize a String.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the String field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Float(System.Single@)\">\r\n            <summary>\r\n            Serialize/deserialize an Float.\r\n            </summary>\r\n            <param name=\"f\">A pointer to the Float field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Double(System.Double@)\">\r\n            <summary>\r\n            Serialize/deserialize an Double.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Double field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Decimal(System.Decimal@)\">\r\n            <summary>\r\n            Serialize/deserialize an Decimal.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Decimal field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Bytes(System.Byte[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Byte[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Chars(System.Char[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Char[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Char[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.IUnsafeSerializer.Serialize``1(``0@)\">\r\n            <summary>\r\n            Serialize/deserialize an IUnsafeSerializable object.\r\n            </summary>\r\n            <param name=\"obj\">A pointer to the IUnsafeSerializable object field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Construct a BinarySerializer instance.\r\n            </summary>\r\n            <param name=\"output\">The BinaryWriter to use for output.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Bool(System.Boolean@)\">\r\n            <summary>\r\n            Serialize/deserialize a bool.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the bool field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Int16(System.Int16@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int16.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the Int16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.UInt16(System.UInt16@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt16.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Int32(System.Int32@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int32.\r\n            </summary>\r\n            <param name=\"i\">A pointer to the Int32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.UInt32(System.UInt32@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt32.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Int64(System.Int64@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int64.\r\n            </summary>\r\n            <param name=\"l\">A pointer to the Int64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.UInt64(System.UInt64@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt64.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Char(System.Char@)\">\r\n            <summary>\r\n            Serialize/deserialize a char.\r\n            </summary>\r\n            <param name=\"c\">A pointer to the char field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Byte(System.Byte@)\">\r\n            <summary>\r\n            Serialize/deserialize a Byte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.SByte(System.SByte@)\">\r\n            <summary>\r\n            Serialize/deserialize an SByte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the SByte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.String(System.String@)\">\r\n            <summary>\r\n            Serialize/deserialize a String.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the String field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Float(System.Single@)\">\r\n            <summary>\r\n            Serialize/deserialize an Float.\r\n            </summary>\r\n            <param name=\"f\">A pointer to the Float field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Double(System.Double@)\">\r\n            <summary>\r\n            Serialize/deserialize an Double.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Double field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Decimal(System.Decimal@)\">\r\n            <summary>\r\n            Serialize/deserialize an Decimal.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Decimal field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Bytes(System.Byte[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Byte[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Chars(System.Char[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Char[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Char[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Serialize``1(``0@)\">\r\n            <summary>\r\n            Serialize/deserialize an IUnsafeSerializable object.\r\n            </summary>\r\n            <param name=\"obj\">A pointer to the IUnsafeSerializable object field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinarySerializer.Dispose\">\r\n            <summary>\r\n            Dispose of this instance's resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer\">\r\n            <summary>\r\n            An unsafe binary deserializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Construct a BinaryDeserializer instance.\r\n            </summary>\r\n            <param name=\"input\">A BinaryReader instance.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Bool(System.Boolean@)\">\r\n            <summary>\r\n            Serialize/deserialize a bool.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the bool field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Int16(System.Int16@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int16.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the Int16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.UInt16(System.UInt16@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt16.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt16 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Int32(System.Int32@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int32.\r\n            </summary>\r\n            <param name=\"i\">A pointer to the Int32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.UInt32(System.UInt32@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt32.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt32 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Int64(System.Int64@)\">\r\n            <summary>\r\n            Serialize/deserialize an Int64.\r\n            </summary>\r\n            <param name=\"l\">A pointer to the Int64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.UInt64(System.UInt64@)\">\r\n            <summary>\r\n            Serialize/deserialize a UInt64.\r\n            </summary>\r\n            <param name=\"u\">A pointer to the UInt64 field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Char(System.Char@)\">\r\n            <summary>\r\n            Serialize/deserialize a char.\r\n            </summary>\r\n            <param name=\"c\">A pointer to the char field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Byte(System.Byte@)\">\r\n            <summary>\r\n            Serialize/deserialize a Byte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.SByte(System.SByte@)\">\r\n            <summary>\r\n            Serialize/deserialize an SByte.\r\n            </summary>\r\n            <param name=\"b\">A pointer to the SByte field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Float(System.Single@)\">\r\n            <summary>\r\n            Serialize/deserialize an Float.\r\n            </summary>\r\n            <param name=\"f\">A pointer to the Float field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Double(System.Double@)\">\r\n            <summary>\r\n            Serialize/deserialize an Double.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Double field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Decimal(System.Decimal@)\">\r\n            <summary>\r\n            Serialize/deserialize an Decimal.\r\n            </summary>\r\n            <param name=\"d\">A pointer to the Decimal field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.String(System.String@)\">\r\n            <summary>\r\n            Serialize/deserialize a String.\r\n            </summary>\r\n            <param name=\"s\">A pointer to the String field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Bytes(System.Byte[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Byte[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Byte[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Chars(System.Char[]@)\">\r\n            <summary>\r\n            Serialize/deserialize an Char[].\r\n            </summary>\r\n            <param name=\"b\">A pointer to the Char[] field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Serialize``1(``0@)\">\r\n            <summary>\r\n            Serialize/deserialize an IUnsafeSerializable object.\r\n            </summary>\r\n            <param name=\"obj\">A pointer to the IUnsafeSerializable object field.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.Unsafe.Binary.BinaryDeserializer.Dispose\">\r\n            <summary>\r\n            Dispose of this instance's resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.DeserializationContext\">\r\n            <summary>\r\n            Contains the context for deserialization with a certain client.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.SerializationContext\">\r\n            <summary>\r\n            Contains the context for serialization with a certain client.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Serialization.DeepCopying\">\r\n            <summary>\r\n            Extension methods to perform deep copies on objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Serialization.DeepCopying.DeepCopy``1(``0)\">\r\n            <summary>\r\n            Performs a deep copy.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of object being copied.</typeparam>\r\n            <param name=\"value\">The value being copied.</param>\r\n            <returns>A deep copy of the given value.</returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.Statistics.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa.Statistics</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Statistics.Linq.Statistics\">\r\n            <summary>\r\n            Some useful statistical functions for manipulating data sets.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Statistics.Linq.Statistics.StandardDeviation(System.Collections.Generic.IEnumerable{System.Double},System.Double@,System.Int32@)\">\r\n            <summary>\r\n            Calculate the standard deviation of the input values.\r\n            </summary>\r\n            <param name=\"source\">A sequence of input values.</param>\r\n            <param name=\"mean\">The mean of the input values.</param>\r\n            <param name=\"count\">The number of input values.</param>\r\n            <returns>Standard deviation.</returns>\r\n        </member>\r\n        <member name=\"F:Sasa.Statistics.Linq.Statistics.peircesTable\">\r\n            <summary>\r\n            Table used in Peirce's Criterion.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Statistics.Linq.Statistics.PeircesCriterion(System.Collections.Generic.IEnumerable{System.Double},System.Int32@)\">\r\n            <summary>\r\n            Filter out outliers according to Peirce's Criterion.\r\n            </summary>\r\n            <param name=\"source\">The source data set.</param>\r\n            <param name=\"eliminated\">The number of outliers eliminated.</param>\r\n            <returns>A result set minus any outliers.</returns>\r\n            <remarks>\r\n            Peirce's table consists of R values, where:\r\n            <code>R = |x(i) - mean| / standard deviation</code>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Statistics.Linq.Statistics.PeircesCriterion(System.Collections.Generic.IEnumerable{System.Double},System.Collections.Generic.IEnumerable{System.Int32}@,System.Int32@)\">\r\n            <summary>\r\n            Filter out outliers according to Peirce's Criterion.\r\n            </summary>\r\n            <param name=\"source\">The source data set.</param>\r\n            <param name=\"outliers\">The indexes of the outliers in the data set.</param>\r\n            <param name=\"eliminated\">The number of outliers eliminated.</param>\r\n            <returns>A result set minus any outliers.</returns>\r\n            <remarks>\r\n            Peirce's table consists of R values, where:\r\n            <code>R = |x(i) - mean| / standard deviation</code>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Statistics.Linq.Statistics.PeircesCriterion(System.Collections.Generic.IEnumerable{System.Double})\">\r\n            <summary>\r\n            Filter out outliers according to Peirce's Criterion.\r\n            </summary>\r\n            <param name=\"source\">The source data set.</param>\r\n            <returns>A result set minus any outliers.</returns>\r\n            <remarks>\r\n            Peirce's table consists of R values, where:\r\n            <code>R = |x(i) - mean| / standard deviation</code>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n            </remarks>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3/Sasa.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Sasa</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Sasa.Lazy`1\">\r\n            <summary>\r\n            A thread-safe lazy value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the value to be lazily evaluated.</typeparam>\r\n            <remarks>\r\n            This implements IOptional&lt;T&gt; since it is temporally optional. In other words, at any given\r\n            time it may or may not have a value.\r\n            \r\n            In general, lazy values computed using side-effecting functions are very difficult to reason about.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.IOptional`1\">\r\n            <summary>\r\n            Encapsulates a value that may or may not be available.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n        </member>\r\n        <member name=\"T:Sasa.IResolvable`1\">\r\n            <summary>\r\n            A container for which you can test whether a value is available.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"P:Sasa.IResolvable`1.HasValue\">\r\n            <summary>\r\n            Returns true if a value is available.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.IValue`1\">\r\n            <summary>\r\n            A read-only encapsulated value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n        </member>\r\n        <member name=\"P:Sasa.IValue`1.Value\">\r\n            <summary>\r\n            A read-only reference to a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.IVolatile`1\">\r\n            <summary>\r\n            A volatile value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value held in the reference.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.IVolatile`1.TryGetValue(`0@)\">\r\n            <summary>\r\n            Attempt to extract the value.\r\n            </summary>\r\n            <param name=\"value\">The value contained in the reference.</param>\r\n            <returns>True if the value was successfully retrieved, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.#ctor(System.Func{`0})\">\r\n            <summary>\r\n            Return a lazily value computed by invoked thunk().\r\n            </summary>\r\n            <param name=\"thunk\">The function used to compute the value when required.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.#ctor(`0)\">\r\n            <summary>\r\n            Return a resolved lazy value.\r\n            </summary>\r\n            <param name=\"v\">The value to encapsulate in a lazy type.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.TryGetValue(`0@)\">\r\n            <summary>\r\n            Attempts to extract the value.\r\n            </summary>\r\n            <param name=\"value\">The lazy value to extract.</param>\r\n            <returns>Returns true if the lazy value was already forced, false otherwise.</returns>\r\n            <remarks>\r\n            This method is thread-safe.\r\n            \r\n            Calling this method does not force the lazy computation.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.Eval\">\r\n            <summary>\r\n            Evaluate the thunk.\r\n            </summary>\r\n            <returns>The value returned from the thunk.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.op_Implicit(System.Func{`0})~Sasa.Lazy{`0}\">\r\n            <summary>\r\n            Implicitly construct a lazy value from a thunk.\r\n            </summary>\r\n            <param name=\"t\">The thunk used to compute the lazy value.</param>\r\n            <returns>A lazily computed value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy`1.op_Implicit(`0)~Sasa.Lazy{`0}\">\r\n            <summary>\r\n            Implicitly convert a value to an initialized lazy value.\r\n            </summary>\r\n            <param name=\"t\">The value to wrap.</param>\r\n            <returns>The lazily computed value.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Lazy`1.Value\">\r\n            <summary>\r\n            Force evaluation of the value.\r\n            </summary>\r\n            <returns>Returns the computed value.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Lazy`1.HasValue\">\r\n            <summary>\r\n            Returns true if the value has been computed.\r\n            </summary>\r\n            <remarks>\r\n            This proeprty is thread-safe.\r\n            \r\n            Accessing this property does not force the lazy computation.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.Lazy\">\r\n            <summary>\r\n            Convenience methods for lazy values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy.Create``1(System.Func{``0})\">\r\n            <summary>\r\n            Construct a new lazy value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the lazy value.</typeparam>\r\n            <param name=\"make\">The function constructing the lazy value.</param>\r\n            <returns>A new lazily initialized value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Lazy.AsLazy``1(``0)\">\r\n            <summary>\r\n            An extension to explicitly construct a lazy value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the value.</typeparam>\r\n            <param name=\"value\">The value to encapsulate.</param>\r\n            <returns>A lazy value.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Triple`3\">\r\n            <summary>\r\n            A three-element tuple.\r\n            </summary>\r\n            <typeparam name=\"T0\">First type.</typeparam>\r\n            <typeparam name=\"T1\">Second type.</typeparam>\r\n            <typeparam name=\"T2\">Third type.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.#ctor(`0,`1,`2)\">\r\n            <summary>\r\n            Construct a new Triple.\r\n            </summary>\r\n            <param name=\"first\">The first value.</param>\r\n            <param name=\"second\">The second value.</param>\r\n            <param name=\"third\">The third value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.Bind(`0@,`1@,`2@)\">\r\n            <summary>\r\n            Bind all values to locals.\r\n            </summary>\r\n            <param name=\"first\">The first value.</param>\r\n            <param name=\"second\">The second value.</param>\r\n            <param name=\"third\">The third value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.Equals(Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Test Triple equality element-wise.\r\n            </summary>\r\n            <param name=\"other\">The Triple to test for equality.</param>\r\n            <returns>True if equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.Equals(System.Object)\">\r\n            <summary>\r\n            Test equality.\r\n            </summary>\r\n            <param name=\"obj\">The object to compare.</param>\r\n            <returns>True if objects are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.GetHashCode\">\r\n            <summary>\r\n            Compute hash code.\r\n            </summary>\r\n            <returns>Hash of the encapsulated values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.CompareTo(Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Compare the two values, sequentially Triple.First, then Triple.Second if\r\n            Triple.First are equal, then Triple.Third if Triple.Second is equal.\r\n            </summary>\r\n            <param name=\"other\">The Triple to compare against.</param>\r\n            <returns>\r\n            Returns zero if the tuples are equal element-wise, returns a number greater than zero if\r\n            the current tuple is greater than <paramref name=\"other\"/> element-wise, else returns a\r\n            number greater than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.ToString\">\r\n            <summary>\r\n            Return a string representation of this Triple.\r\n            </summary>\r\n            <returns>String representation of this Triple.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.op_Equality(Sasa.Triple{`0,`1,`2},Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Compares two Triples for equality.\r\n            </summary>\r\n            <param name=\"left\">The first Triple.</param>\r\n            <param name=\"right\">The second Triple.</param>\r\n            <returns>Returns true if the Triples are equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.op_Inequality(Sasa.Triple{`0,`1,`2},Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Compares two Triples for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first Triple.</param>\r\n            <param name=\"right\">The second Triple.</param>\r\n            <returns>Returns true if the Triples are not equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.op_LessThan(Sasa.Triple{`0,`1,`2},Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Orders two tuples.\r\n            </summary>\r\n            <param name=\"left\">The first tuple.</param>\r\n            <param name=\"right\">The second tuple.</param>\r\n            <returns>\r\n            Returns zero if the tuples are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Triple`3.op_GreaterThan(Sasa.Triple{`0,`1,`2},Sasa.Triple{`0,`1,`2})\">\r\n            <summary>\r\n            Orders two tuples.\r\n            </summary>\r\n            <param name=\"left\">The first tuple.</param>\r\n            <param name=\"right\">The second tuple.</param>\r\n            <returns>\r\n            Returns zero if the tuples are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Triple`3.First\">\r\n            <summary>\r\n            First element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Triple`3.Second\">\r\n            <summary>\r\n            Second element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Triple`3.Third\">\r\n            <summary>\r\n            Third element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.TypeConstraint`1\">\r\n            <summary>\r\n            Specifies a type constraint that normally C# would not be able to enforce.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.TypeConstraint`1.op_Implicit(`0)~Sasa.TypeConstraint{`0}\">\r\n            <summary>\r\n            Implicitly convert a value of type <typeparamref name=\"T\"/> to a TypeConstraint.\r\n            </summary>\r\n            <param name=\"value\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Sasa.TypeConstraint`1.Value\">\r\n            <summary>\r\n            Extract the encapsulated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.TypeConstraint`2\">\r\n            <summary>\r\n            Specifies a subtyping type constraint relationship. You use this constraint\r\n            primarily when compiling with other code that specifies ITypeConstraint.\r\n            </summary>\r\n            <typeparam name=\"T\">The inherited type.</typeparam>\r\n            <typeparam name=\"TBase\">The base type for which the constraint is enforced.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.TypeConstraint`2.op_Implicit(`0)~Sasa.TypeConstraint{`0,`1}\">\r\n            <summary>\r\n            Implicitly convert a value of type <typeparamref name=\"T\"/> to a TypeConstraint.\r\n            </summary>\r\n            <param name=\"value\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Sasa.TypeConstraint`2.Value\">\r\n            <summary>\r\n            Extract the encapsulated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Doubles\">\r\n            <summary>\r\n            Extension methods on System.Double.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Doubles.Bound(System.Double,System.Double,System.Double)\">\r\n            <summary>\r\n            Bound the given Double by the upper and lower values.\r\n            </summary>\r\n            <param name=\"value\">The value to bound.</param>\r\n            <param name=\"min\">The lower inclusive bound.</param>\r\n            <param name=\"max\">The upper inclusive bound.</param>\r\n            <returns>Returns <paramref name=\"value\"/> if <paramref name=\"min\"/> &lt;= <paramref name=\"value\"/> &lt;= <paramref name=\"max\"/>,\r\n            or <paramref name=\"min\"/> or <paramref name=\"max\"/> if <paramref name=\"value\"/> is out of that range.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Doubles.UpTo(System.Double,System.Double,System.Double)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <param name=\"step\">The increment used from <paramref name=\"start\"/> to <paramref name=\"end\"/>.</param>\r\n            <returns>A stream of decimal from [<paramref name=\"start\"/>, <paramref name=\"end\"/>).</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Events\">\r\n             <summary>\r\n             Extension methods to safely trigger events. Triggering events\r\n             using Raise() is both null-safe and thread-safe. Delegates\r\n             are still required to ensure the state they are accessing\r\n             is valid.\r\n             </summary>\r\n             <remarks>\r\n             These functions provide a certain type of thread-safety. Eric\r\n             Lippert described the two thread-safety issues with events on\r\n             his blog:\r\n             \r\n             http://blogs.msdn.com/ericlippert/archive/2009/04/29/events-and-races.aspx\r\n            \r\n             This Events class provides thread-safety #1 in his list, but\r\n             not #2. Clients do not need to perform null checks before calling\r\n             Raise() on them, and do not need to perform locking to synchronize\r\n             add/remove handlers if they use the Add()/Remove() functions,\r\n             etc.\r\n             \r\n             Clients are still required to ensure that any delegates\r\n             called are accessing valid state, even though that state may\r\n             have changed.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.RaiseAny(System.Delegate,System.Object[])\">\r\n            <summary>\r\n            Safely raise any event.\r\n            </summary>\r\n            <param name=\"del\">The multicast delegate representing the event.</param>\r\n            <param name=\"args\">The arguments to the delegate.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise(System.EventHandler,System.Object,System.EventArgs)\">\r\n            <summary>\r\n            Safely raise an EventHandler event.\r\n            </summary>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"sender\">The object triggering the event.</param>\r\n            <param name=\"e\">The event args.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise``1(System.EventHandler{``0},System.Object,``0)\">\r\n            <summary>\r\n            Safely raise an EventHandler event.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the EventArgs.</typeparam>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"sender\">The object triggering the event.</param>\r\n            <param name=\"e\">The event args.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise(System.Action)\">\r\n            <summary>\r\n            Safely raise an Action event.\r\n            </summary>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise``1(System.Action{``0},``0)\">\r\n            <summary>\r\n            Safely raise an Action event.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to the event.</typeparam>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"arg0\">The first event arg.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise``2(System.Action{``0,``1},``0,``1)\">\r\n            <summary>\r\n            Safely raise an Action event.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument to the event.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument to the event.</typeparam>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"arg0\">The first event arg.</param>\r\n            <param name=\"arg1\">The second event arg.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise``3(System.Action{``0,``1,``2},``0,``1,``2)\">\r\n            <summary>\r\n            Safely raise an Action event.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument to the event.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument to the event.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument to the event.</typeparam>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"arg0\">The first event arg.</param>\r\n            <param name=\"arg1\">The second event arg.</param>\r\n            <param name=\"arg2\">The third event arg.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Raise``4(System.Action{``0,``1,``2,``3},``0,``1,``2,``3)\">\r\n            <summary>\r\n            Safely raise an Action event.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument to the event.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument to the event.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument to the event.</typeparam>\r\n            <typeparam name=\"W\">The type of the third argument to the event.</typeparam>\r\n            <param name=\"del\">The delegate representing the event.</param>\r\n            <param name=\"arg0\">The first event arg.</param>\r\n            <param name=\"arg1\">The second event arg.</param>\r\n            <param name=\"arg2\">The third event arg.</param>\r\n            <param name=\"arg3\">The fourth event arg.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.AddAny``1(``0@,``0)\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Add(System.EventHandler@,System.EventHandler)\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Add``1(System.EventHandler{``0}@,System.EventHandler{``0})\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Add(System.Action@,System.Action)\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Add``1(System.Action{``0}@,System.Action{``0})\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Add``2(System.Action{``0,``1}@,System.Action{``0,``1})\">\r\n            <summary>\r\n            Add <paramref name=\"newHandler\"/> to the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to add.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.RemoveAny``1(``0@,``0)\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Remove(System.EventHandler@,System.EventHandler)\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Remove``1(System.EventHandler{``0}@,System.EventHandler{``0})\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">Type of event args.</typeparam>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Remove(System.Action@,System.Action)\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Remove``1(System.Action{``0}@,System.Action{``0})\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Remove``2(System.Action{``0,``1}@,System.Action{``0,``1})\">\r\n            <summary>\r\n            Remove <paramref name=\"newHandler\"/> from the list of events <paramref name=\"del\"/>.\r\n            </summary>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <param name=\"newHandler\">The delegate to remove.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Events.Clear``1(``0@)\">\r\n            <summary>\r\n            Clears an event by setting the field to null and returning the previous event contents.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the delegate.</typeparam>\r\n            <param name=\"del\">A reference to the local <see cref=\"T:System.Delegate\"/>.</param>\r\n            <returns>The previous event contents.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Empty\">\r\n            <summary>\r\n            An empty/void value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Empty.Equals(System.Object)\">\r\n            <summary>\r\n            Equality test for Void.\r\n            </summary>\r\n            <param name=\"obj\">Object to compare.</param>\r\n            <returns>Returns true of <paramref name=\"obj\"/> is Void, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Empty.GetHashCode\">\r\n            <summary>\r\n            Returns the hash code for a Void value.\r\n            </summary>\r\n            <returns>Hash code for Void.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Empty.ToString\">\r\n            <summary>\r\n            Convert Void to a string.\r\n            </summary>\r\n            <returns>Returns a string representation of a Unit value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Empty.op_Equality(Sasa.Empty,Sasa.Empty)\">\r\n            <summary>\r\n            Equality on two voids is always true.\r\n            </summary>\r\n            <param name=\"left\">Left hand side.</param>\r\n            <param name=\"right\">Right hand side.</param>\r\n            <returns>Returns true.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Empty.op_Inequality(Sasa.Empty,Sasa.Empty)\">\r\n            <summary>\r\n            Inequality on two voids is always false.\r\n            </summary>\r\n            <param name=\"left\">Left hand side.</param>\r\n            <param name=\"right\">Right hand side.</param>\r\n            <returns>Returns false.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Set`1\">\r\n            <summary>\r\n            A simple set based on <see cref=\"T:Sasa.Collections.Seq`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the set's elements.</typeparam>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.ISeq`2\">\r\n            <summary>\r\n            The interface describing a purely functional collection.\r\n            </summary>\r\n            <typeparam name=\"TCollection\">The type of the collection.</typeparam>\r\n            <typeparam name=\"TItem\">The type of the elements contained within the collection</typeparam>\r\n            <remarks>\r\n            The precise semantics of the collection is implementation-specific. A sequence of Add and Remove\r\n            calls may return items in an arbitrary sequence depending on the type collection.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.ISeq`2.Add(`1)\">\r\n            <summary>\r\n            Adds an item to the collection.\r\n            </summary>\r\n            <param name=\"value\">The item to add.</param>\r\n            <returns>A new collection with the new item.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.ISeq`2.Remove(`1@)\">\r\n            <summary>\r\n            Removes an item from the collection.\r\n            </summary>\r\n            <param name=\"value\">The item removed.</param>\r\n            <returns>A new collection without the item.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.ISeq`2.Remove\">\r\n            <summary>\r\n            Remove an item from the collection\r\n            </summary>\r\n            <returns>A pair of a new collection without the item, and the item that was removed.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.ISeq`2.Value\">\r\n            <summary>\r\n            Returns the item to be removed next from the collection.\r\n            </summary>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the collection is empty.</exception>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.ISeq`2.IsEmpty\">\r\n            <summary>\r\n            Returns true if the collection is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Union(`0)\">\r\n            <summary>\r\n            Compute the union of the current set with the given item.\r\n            </summary>\r\n            <param name=\"item\">The item to add to the set.</param>\r\n            <returns>A new set with the union of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Union(`0[])\">\r\n            <summary>\r\n            Compute the union of all items.\r\n            </summary>\r\n            <param name=\"items\">The items to add to the set.</param>\r\n            <returns>A new set with the union of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Contains(`0)\">\r\n            <summary>\r\n            Checks the set for membership of an item.\r\n            </summary>\r\n            <param name=\"item\">The item to check.</param>\r\n            <returns>Returns true if item is in the set.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Equals(Sasa.Collections.Set{`0})\">\r\n            <summary>\r\n            Compares two sets for equality.\r\n            </summary>\r\n            <param name=\"other\">The set to compare.</param>\r\n            <returns>Returns true if the two sets are equivalent.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Union(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Compute the union of all items.\r\n            </summary>\r\n            <param name=\"items\">The items to add to the set.</param>\r\n            <returns>A new set with the union of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Union(Sasa.Collections.Set{`0})\">\r\n            <summary>\r\n            Compute the union of all items.\r\n            </summary>\r\n            <param name=\"other\">The other set whose items we add to the set.</param>\r\n            <returns>A new set with the union of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Intersect(`0[])\">\r\n            <summary>\r\n            Compute the intersection of all items.\r\n            </summary>\r\n            <param name=\"items\">The items to compare with the current set.</param>\r\n            <returns>A new set with the intersection of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Intersect(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Compute the intersection of all items.\r\n            </summary>\r\n            <param name=\"items\">The items to compare with the current set.</param>\r\n            <returns>A new set with the intersection of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.GetEnumerator\">\r\n            <summary>\r\n            Enumerate over all items in the set.\r\n            </summary>\r\n            <returns>An enumerator for the set.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.Intersect(Sasa.Collections.Set{`0})\">\r\n            <summary>\r\n            Compute the intersection of all items.\r\n            </summary>\r\n            <param name=\"other\">The set whose items to compare with the current set.</param>\r\n            <returns>A new set with the intersection of all items.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.op_BitwiseAnd(Sasa.Collections.Set{`0},Sasa.Collections.Set{`0})\">\r\n            <summary>\r\n            The union of two sets.\r\n            </summary>\r\n            <param name=\"s1\">The first set.</param>\r\n            <param name=\"s2\">The second set.</param>\r\n            <returns>The union of <paramref name=\"s1\"/> and <paramref name=\"s2\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.op_BitwiseAnd(Sasa.Collections.Set{`0},`0)\">\r\n            <summary>\r\n            The union of a set and a value.\r\n            </summary>\r\n            <param name=\"s1\">The first set.</param>\r\n            <param name=\"item\">The item to add to the set.</param>\r\n            <returns>The union of <paramref name=\"s1\"/> and <paramref name=\"item\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.op_ExclusiveOr(Sasa.Collections.Set{`0},Sasa.Collections.Set{`0})\">\r\n            <summary>\r\n            The intersection of two sets.\r\n            </summary>\r\n            <param name=\"s1\">The first set.</param>\r\n            <param name=\"s2\">The second set.</param>\r\n            <returns>The intersection of <paramref name=\"s1\"/> and <paramref name=\"s2\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set`1.ToString\">\r\n            <summary>\r\n            Construct a string for the set.\r\n            </summary>\r\n            <returns>A string representation of the set.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Set`1.IsEmpty\">\r\n            <summary>\r\n            Returns true if the set is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Set\">\r\n            <summary>\r\n            Utility functions for <see cref=\"T:Sasa.Collections.Set`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Set.Make``1(``0[])\">\r\n            <summary>\r\n            Construct an initial set from the list of items.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the set.</typeparam>\r\n            <param name=\"items\">The initial items with which to populate the set.</param>\r\n            <returns>A new set with the initial values.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.NonNull`1\">\r\n            <summary>\r\n            This class encapsulates a non-null reference. An of this class instance serves as evidence\r\n            that the encapsulated reference is not null.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated reference.</typeparam>\r\n            <remarks>Proper usage is to never create or declare NonNull types as locals. NonNull should\r\n            only be used to decorate method arguments. The only way an invalid instance of NonNull can\r\n            be created is when declaring it as a local:\r\n            ...\r\n            NonNull&lt;T&gt; foo;\r\n            ...\r\n            T bar = foo; // NullReferenceException\r\n            \r\n            When it comes to high assurance code, you should utilize Option and NonNull types for\r\n            method arguments, to declare which arguments may be null and which must necessarily be\r\n            non-null. The type checker will ensure that values are handled properly within the method,\r\n            and client code will receive the errors when passing in null references for NonNull values.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.#ctor(`0)\">\r\n            <summary>\r\n            Construct an assuredy non-null reference.\r\n            </summary>\r\n            <param name=\"value\"></param>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Implicit(Sasa.NonNull{`0})~`0\">\r\n            <summary>\r\n            Implicit conversion back to a type T.\r\n            </summary>\r\n            <param name=\"t\">The NonNull value to convert back to T.</param>\r\n            <returns>The encapsulated T value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.Equals(`0)\">\r\n            <summary>\r\n            Compare encapsulated values for equality.\r\n            </summary>\r\n            <param name=\"other\">The value to compare against.</param>\r\n            <returns>True if values are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.Equals(Sasa.NonNull{`0})\">\r\n            <summary>\r\n            Compare NonNull values for equality.\r\n            </summary>\r\n            <param name=\"other\">The value to compare against.</param>\r\n            <returns>True if values are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.Equals(System.Object)\">\r\n            <summary>\r\n            Compares equality of the encapsulated value and the given value.\r\n            </summary>\r\n            <param name=\"obj\">The value to compare.</param>\r\n            <returns>True if the values are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.GetHashCode\">\r\n            <summary>\r\n            Return the hash code of the encapsulated value.\r\n            </summary>\r\n            <returns>The hash code.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.ToString\">\r\n            <summary>\r\n            Returns a string representation of the encapsulated value.\r\n            </summary>\r\n            <returns>Returns a string representation of the encapsulated value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Equality(Sasa.NonNull{`0},Sasa.NonNull{`0})\">\r\n            <summary>\r\n            Compares two NonNull values for equality.\r\n            </summary>\r\n            <param name=\"n1\">The first NonNull.</param>\r\n            <param name=\"n2\">The second NonNull.</param>\r\n            <returns>Returns true if the NonNulls are equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Inequality(Sasa.NonNull{`0},Sasa.NonNull{`0})\">\r\n            <summary>\r\n            Compares two NonNull values for inequality.\r\n            </summary>\r\n            <param name=\"n1\">The first NonNull.</param>\r\n            <param name=\"n2\">The second NonNull.</param>\r\n            <returns>Returns true if the NonNulls are not equal, and false otherwise.</returns>>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Equality(Sasa.NonNull{`0},`0)\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Inequality(Sasa.NonNull{`0},`0)\">\r\n            <summary>\r\n            Compares two objects for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are not equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Equality(`0,Sasa.NonNull{`0})\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.NonNull`1.op_Inequality(`0,Sasa.NonNull{`0})\">\r\n            <summary>\r\n            Compares two objects for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are not equal.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.NonNull`1.Value\">\r\n            <summary>\r\n            Retrieves the encapsulated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Null\">\r\n            <summary>\r\n            Convenience functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Null.NonNull``1(``0)\">\r\n            <summary>\r\n            Construct a new non-null instance.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the non-null reference.</typeparam>\r\n            <param name=\"value\">The reference to check for null.</param>\r\n            <returns>An assuredly non-null reference.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.MetaExtensions\">\r\n            <summary>\r\n            Various simple meta-programming extensions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.MetaExtensions.MemberName``1(System.Linq.Expressions.Expression{System.Func{``0}})\">\r\n            <summary>\r\n            Exploits lambda expressions to ensure the field or property name returned as a\r\n            string is valid.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the field or property.</typeparam>\r\n            <param name=\"property\">A lambda expression naming a field or property.</param>\r\n            <returns>The name of the field or property.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`4\">\r\n            <summary>\r\n            This type encapsulates either a value of type <typeparamref name=\"TFirst\"/>,\r\n            <typeparamref name=\"TSecond\"/>, <typeparamref name=\"TThird\"/> or\r\n            <typeparamref name=\"TFourth\"/>.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">Possible 'First' type.</typeparam>\r\n            <typeparam name=\"TSecond\">Possible 'Second' type.</typeparam>\r\n            <typeparam name=\"TThird\">Possible 'Third' type.</typeparam>\r\n            <typeparam name=\"TFourth\">Possible 'Fourth' type.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Implicit(`0)~Sasa.Either{`0,`1,`2,`3}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TFirst\"/> can be implicitly converted to First.\r\n            </summary>\r\n            <param name=\"f\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Implicit(`1)~Sasa.Either{`0,`1,`2,`3}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TSecond\"/> can be implicitly converted to Second.\r\n            </summary>\r\n            <param name=\"s\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Implicit(`2)~Sasa.Either{`0,`1,`2,`3}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TThird\"/> can be implicitly converted to Third.\r\n            </summary>\r\n            <param name=\"t\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Third.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Implicit(`3)~Sasa.Either{`0,`1,`2,`3}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TFourth\"/> can be implicitly converted to Fourth.\r\n            </summary>\r\n            <param name=\"u\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Third.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Explicit(Sasa.Either{`0,`1,`2,`3})~`0\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Explicit(Sasa.Either{`0,`1,`2,`3})~`1\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Explicit(Sasa.Either{`0,`1,`2,`3})~`2\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.op_Explicit(Sasa.Either{`0,`1,`2,`3})~`3\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.First(`0)\">\r\n            <summary>\r\n            Returns an instance initialized to <typeparamref name=\"TFirst\"/>.\r\n            </summary>\r\n            <param name=\"f\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Second(`1)\">\r\n            <summary>\r\n            Returns an instance initialized to Second.\r\n            </summary>\r\n            <param name=\"s\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Third(`2)\">\r\n            <summary>\r\n            Return an Either encapsulating a value of type <typeparamref name=\"TThird\"/>.\r\n            </summary>\r\n            <param name=\"t\">The value to encapsulate.</param>\r\n            <returns>A newly initialized Either value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Fourth(`3)\">\r\n            <summary>\r\n            Return an Either encapsulating a value of type <typeparamref name=\"TFourth\"/>.\r\n            </summary>\r\n            <param name=\"u\">The value to encapsulate.</param>\r\n            <returns>A newly initialized Either value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Do(System.Action{`0},System.Action{`1},System.Action{`2},System.Action{`3})\">\r\n            <summary>\r\n            Perform an action on the encapsulated value.\r\n            </summary>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n            <param name=\"third\">Function to apply if encapsulated value is of type <typeparamref name=\"TThird\"/>.</param>\r\n            <param name=\"fourth\">Function to apply if encapsulated value is of type <typeparamref name=\"TFourth\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Select``1(System.Func{`0,``0},System.Func{`1,``0},System.Func{`2,``0},System.Func{`3,``0})\">\r\n            <summary>\r\n            Transform the encapsulated value into a <typeparamref name=\"TReturn\"/>.\r\n            </summary>\r\n            <typeparam name=\"TReturn\">The type to return.</typeparam>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n            <param name=\"third\">Function to apply if encapsulated value is of type <typeparamref name=\"TThird\"/>.</param>\r\n            <param name=\"fourth\">Function to apply if encapsulated value is of type <typeparamref name=\"TFourth\"/>.</param>\r\n            <returns>The computed value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Select(`0)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TFirst\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TFirst\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Select(`1)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TSecond\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TSecond\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Select(`2)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TThird\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TThird\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`4.Select(`3)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TFourth\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TFourth\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`4.IsFirst\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TFirst\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`4.IsSecond\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TSecond\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`4.IsThird\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TThird\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`4.IsFourth\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TFourth\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`4._First\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`4._Second\">\r\n            <summary>\r\n            The internal class representing the 'Second' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`4._Third\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`4._Fourth\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Arrays\">\r\n            <summary>\r\n            Array extensions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Append``1(``0[],``0[])\">\r\n            <summary>\r\n            Combine the values of two arrays into a new array.\r\n            </summary>\r\n            <typeparam name=\"T\">The type in the array.</typeparam>\r\n            <param name=\"first\">The first array.</param>\r\n            <param name=\"second\">The second array.</param>\r\n            <returns>Returns a new array with the values of <paramref name=\"first\"/>, followed by the values in <paramref name=\"second\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Aggregate``2(``0[],``1,System.Func{``0,``1,``1})\">\r\n            <summary>\r\n            Process each element of an array.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array.</typeparam>\r\n            <typeparam name=\"U\">The return type.</typeparam>\r\n            <param name=\"array\">The array.</param>\r\n            <param name=\"seed\">The seed value.</param>\r\n            <param name=\"func\">The function transforming the array.</param>\r\n            <returns>The value computed from the array.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Make``1(``0[])\">\r\n            <summary>\r\n            A syntactic shortcut to create arrays of values leveraging type inference.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array.</typeparam>\r\n            <param name=\"values\">The values to create.</param>\r\n            <returns>An array of the provided values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Eq``1(``0[],``0[])\">\r\n            <summary>\r\n            Test two arrays for equality, element-wise.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the arrays.</typeparam>\r\n            <param name=\"a1\">The first array.</param>\r\n            <param name=\"a2\">The second array.</param>\r\n            <returns>True if the two arrays are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Slice``1(``0[],System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Return a slice of an array delineated by the start and end indices.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array elements.</typeparam>\r\n            <param name=\"array\">The array to slice.</param>\r\n            <param name=\"start\">The start of the slice.</param>\r\n            <param name=\"end\">The end of the slice.</param>\r\n            <returns>The array slice.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Repeat``1(``0[],System.UInt32)\">\r\n            <summary>\r\n            Repeats all entries in <paramref name=\"array\"/> up to <paramref name=\"start\"/>\r\n            as many times as will fit.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array elements.</typeparam>\r\n            <param name=\"array\">The array to slice.</param>\r\n            <param name=\"start\">The index at which to start duplicating elements.</param>\r\n            <returns>Returns <paramref name=\"array\"/> after the update.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Fill``1(``0[],``0,System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Populates the given array with <paramref name=\"item\"/>, starting at the given index\r\n            for <paramref name=\"count\"/> entries.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array elements.</typeparam>\r\n            <param name=\"array\">The array.</param>\r\n            <param name=\"item\">The item with which to fill the array.</param>\r\n            <param name=\"i\">The index to start filling.</param>\r\n            <param name=\"count\">The number of entries to set.</param>\r\n            <returns>Returns <paramref name=\"array\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Dup``1(``0[])\">\r\n            <summary>\r\n            Duplicates a given array.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array elements.</typeparam>\r\n            <param name=\"array\">The array.</param>\r\n            <returns>A duplicate of the given array.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Arrays.Bound``1(``0[],System.UInt32)\">\r\n            <summary>\r\n            Returns an array with the given length, seeded with the\r\n            <paramref name=\"array\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array elements.</typeparam>\r\n            <param name=\"array\">The array.</param>\r\n            <param name=\"count\">The number of items in the returned array.</param>\r\n            <returns>An array of length <paramref name=\"count\"/>.</returns>\r\n            <remarks>If <paramref name=\"count\"/> equals a.Length, then the same array\r\n            is returned. If <paramref name=\"count\"/> is greater than a.Length, then\r\n            a new array is created and seeded with the original values in <paramref name=\"array\"/>\r\n            with the remainder of the array remaining uninitialized.</remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.Singles\">\r\n            <summary>\r\n            Extension methods on System.Single.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Singles.Bound(System.Single,System.Single,System.Single)\">\r\n            <summary>\r\n            Bound the given Single by the upper and lower values.\r\n            </summary>\r\n            <param name=\"value\">The value to bound.</param>\r\n            <param name=\"min\">The lower inclusive bound.</param>\r\n            <param name=\"max\">The upper inclusive bound.</param>\r\n            <returns>Returns <paramref name=\"value\"/> if <paramref name=\"min\"/> &lt;= <paramref name=\"value\"/> &lt;= <paramref name=\"max\"/>,\r\n            or <paramref name=\"min\"/> or <paramref name=\"max\"/> if <paramref name=\"value\"/> is out of that range.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Singles.UpTo(System.Single,System.Single,System.Single)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <param name=\"step\">The increment used from <paramref name=\"start\"/> to <paramref name=\"end\"/>.</param>\r\n            <returns>A stream of decimal from [<paramref name=\"start\"/>, <paramref name=\"end\"/>).</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`3\">\r\n            <summary>\r\n            This type encapsulates either a value of type <typeparamref name=\"TFirst\"/>,\r\n            <typeparamref name=\"TSecond\"/>, or <typeparamref name=\"TThird\"/>.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">Possible 'First' type.</typeparam>\r\n            <typeparam name=\"TSecond\">Possible 'Second' type.</typeparam>\r\n            <typeparam name=\"TThird\">Possible 'Third' type.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Implicit(`0)~Sasa.Either{`0,`1,`2}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TFirst\"/> can be implicitly converted to First.\r\n            </summary>\r\n            <param name=\"f\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Implicit(`1)~Sasa.Either{`0,`1,`2}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TSecond\"/> can be implicitly converted to Second.\r\n            </summary>\r\n            <param name=\"s\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Implicit(`2)~Sasa.Either{`0,`1,`2}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TThird\"/> can be implicitly converted to Third.\r\n            </summary>\r\n            <param name=\"t\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Third.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Explicit(Sasa.Either{`0,`1,`2})~`0\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Explicit(Sasa.Either{`0,`1,`2})~`1\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.op_Explicit(Sasa.Either{`0,`1,`2})~`2\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.First(`0)\">\r\n            <summary>\r\n            Returns an instances initialized to First.\r\n            </summary>\r\n            <param name=\"f\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Second(`1)\">\r\n            <summary>\r\n            Returns an instances initialized to Second.\r\n            </summary>\r\n            <param name=\"s\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Third(`2)\">\r\n            <summary>\r\n            Return an Either encapsulating a type T.\r\n            </summary>\r\n            <param name=\"t\">The value to encapsulate.</param>\r\n            <returns>A newly initialized Either value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Do(System.Action{`0},System.Action{`1},System.Action{`2})\">\r\n            <summary>\r\n            Perform an action on the encapsulated value.\r\n            </summary>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n            <param name=\"third\">Function to apply if encapsulated value is of type <typeparamref name=\"TThird\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Select``1(System.Func{`0,``0},System.Func{`1,``0},System.Func{`2,``0})\">\r\n            <summary>\r\n            Transform the encapsulated value into a <typeparamref name=\"TReturn\"/>.\r\n            </summary>\r\n            <typeparam name=\"TReturn\">The type to return.</typeparam>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n            <param name=\"third\">Function to apply if encapsulated value is of type <typeparamref name=\"TThird\"/>.</param>\r\n            <returns>The computed value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Select(`0)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TFirst\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TFirst\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Select(`1)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TSecond\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TSecond\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`3.Select(`2)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TThird\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TThird\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`3.IsFirst\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TFirst\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`3.IsSecond\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TSecond\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`3.IsThird\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TThird\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`3._First\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`3._Second\">\r\n            <summary>\r\n            The internal class representing the 'Second' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`3._Third\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Seq`1\">\r\n            <summary>\r\n            A purely functional stack.\r\n            </summary>\r\n            <remarks>\r\n            \"null\" is also a valid sequence value that can be used to\r\n            construct lists (see example).\r\n            </remarks>\r\n            <example>\r\n            <code>Seq&lt;T&gt; list = value1 &amp; value2 &amp; null;</code>\r\n            </example>\r\n            <typeparam name=\"T\">The type of the sequence elements.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.#ctor(`0,Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Construct a new sequence from a new head value and an existing list.\r\n            </summary>\r\n            <param name=\"e\">The new value at the head of the list.</param>\r\n            <param name=\"tail\">The remainder of the list.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.#ctor(`0)\">\r\n            <summary>\r\n            Construct a new single-element sequence.\r\n            </summary>\r\n            <param name=\"e\">The new value at the head of the list.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator over the given list.\r\n            </summary>\r\n            <returns>An enumeration over the list.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Equals(Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Tests structural equality of two sequences.\r\n            </summary>\r\n            <param name=\"other\">The other sequence to compare to.</param>\r\n            <returns>True if the sequences are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Equals(System.Object)\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"obj\">The other object to compare to.</param>\r\n            <returns>Returns true if the objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.GetHashCode\">\r\n            <summary>\r\n            Returns the hash code for the current sequence.\r\n            </summary>\r\n            <returns>The integer hash code.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Peek\">\r\n            <summary>\r\n            Peeks at the current value in the sequence.\r\n            </summary>\r\n            <returns>The value at the head of the sequence.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the sequence is empty.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Pop(`0@)\">\r\n            <summary>\r\n            Pops the first element off the sequence.\r\n            </summary>\r\n            <param name=\"value\">The value in the first element of the sequence.</param>\r\n            <returns>The remaining sequence.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the sequence is empty.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Pop\">\r\n            <summary>\r\n            Pops the first element off the sequence.\r\n            </summary>\r\n            <returns>A pair consisting of the new sequence and the current element of the sequence.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the sequence is empty.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Push(`0)\">\r\n            <summary>\r\n            Push an element on to the front of the sequence.\r\n            </summary>\r\n            <param name=\"value\">The new head of the sequence.</param>\r\n            <returns>A new sequence.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Contains(`0)\">\r\n            <summary>\r\n            Checks whether a value is in the sequence.\r\n            </summary>\r\n            <param name=\"value\">The value to test.</param>\r\n            <returns>True if the element is in the sequence, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Reverse\">\r\n            <summary>\r\n            Reverse a sequence.\r\n            </summary>\r\n            <returns>A reversed sequence.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Append(Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Append the given sequence after the current sequence.\r\n            </summary>\r\n            <param name=\"other\">The elements to append.</param>\r\n            <returns>A new sequence constructed from the given parameters.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.ReverseAppend(Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Reverses the current sequence and appens another sequence to the end.\r\n            </summary>\r\n            <param name=\"append\">The sequence to append.</param>\r\n            <returns>A combined sequence.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Select``1(``0,System.Func{`0,Sasa.Collections.Seq{`0},``0})\">\r\n            <summary>\r\n            Apply an operation to a deconstructed list.\r\n            </summary>\r\n            <typeparam name=\"R\">The type of return value.</typeparam>\r\n            <param name=\"otherwise\">The value to return if the sequence is empty.</param>\r\n            <param name=\"cons\">The function to invoke with the deconstructed head of the list.</param>\r\n            <returns>Returns cons(head, tail), or otherwise if the sequence is empty.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Select(`0)\">\r\n            <summary>\r\n            Return the value at the head of the list.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if the sequence is empty.</param>\r\n            <returns>Returns the value at the head of the list, or 'otherwise' if the sequence is empty.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Set(Sasa.Collections.Seq{`0}@)\">\r\n            <summary>\r\n            Perform an atomic set of a stack value.\r\n            </summary>\r\n            <param name=\"slot\">The reference at which to place the new head.</param>\r\n            <returns>Returns true if the swap succeeded.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Remove(`0)\">\r\n            <summary>\r\n            Remove an element from the sequence.\r\n            </summary>\r\n            <param name=\"value\">The value to remove.</param>\r\n            <returns>A new sequence without the element.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.Do(System.Action{`0})\">\r\n            <summary>\r\n            Apply an operation over a sequence.\r\n            </summary>\r\n            <param name=\"f\">The function to apply.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.ToString\">\r\n            <summary>\r\n            Return a string representation of the given list.\r\n            </summary>\r\n            <returns>String represetation of the list.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.op_BitwiseAnd(Sasa.Collections.Seq{`0},`0)\">\r\n            <summary>\r\n            The sequence 'cons'/add operation, to construct a sequence from a new value and an existing list.\r\n            </summary>\r\n            <param name=\"t\">The new value at the head of the list.</param>\r\n            <param name=\"l\">The remainder of the list.</param>\r\n            <returns>A new sequence constructed from the given parameters.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.op_BitwiseAnd(Sasa.Collections.Seq{`0},Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            The sequence 'cons'/add operation, to construct a sequence from two lists.\r\n            </summary>\r\n            <param name=\"left\">The new value at the head of the list.</param>\r\n            <param name=\"right\">The remainder of the list.</param>\r\n            <returns>A new sequence constructed from the given parameters.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.op_BitwiseOr(Sasa.Collections.Seq{`0},`0)\">\r\n            <summary>\r\n            Returns the value at the head of the sequence o, if o is not empty, or t otherwise. This is\r\n            the sequence equivalent of the ?? operator for null values.\r\n            </summary>\r\n            <param name=\"o\">The sequence value to return if not empty.</param>\r\n            <param name=\"t\">The value to return otherwise.</param>\r\n            <returns>Either the head of the list, or t.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.op_Equality(Sasa.Collections.Seq{`0},Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Test two sequences for equality.\r\n            </summary>\r\n            <param name=\"left\">The left sequence.</param>\r\n            <param name=\"right\">The right sequence.</param>\r\n            <returns>Returns true if they are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Seq`1.op_Inequality(Sasa.Collections.Seq{`0},Sasa.Collections.Seq{`0})\">\r\n            <summary>\r\n            Test two sequences for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left sequence.</param>\r\n            <param name=\"right\">The right sequence.</param>\r\n            <returns>Returns true if they are not equal.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Seq`1.Empty\">\r\n            <summary>\r\n            Returns an empty stack.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Seq`1.IsEmpty\">\r\n            <summary>\r\n            Returns true if the sequence is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Seq`1.Value\">\r\n            <summary>\r\n            Gets the current element of the collection.\r\n            </summary>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the collection is empty.</exception>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Seq`1.Next\">\r\n            <summary>\r\n            Returns the next element in the sequence.\r\n            </summary>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the collection is empty.</exception>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.PQueue`1\">\r\n            <summary>\r\n            A persistent queue.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the queue elements.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initialize the queue with the given list of values.\r\n            </summary>\r\n            <param name=\"values\">The list of values.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.#ctor(`0)\">\r\n            <summary>\r\n            Construct a single-element queue.\r\n            </summary>\r\n            <param name=\"value\">The initial queue value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Equals(Sasa.Collections.PQueue{`0})\">\r\n            <summary>\r\n            Tests structural equality of two queues.\r\n            </summary>\r\n            <param name=\"other\">The other queue to compare to.</param>\r\n            <returns>True if the queues are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Equals(System.Object)\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"obj\">The other object to compare to.</param>\r\n            <returns>Returns true if the objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.GetHashCode\">\r\n            <summary>\r\n            Returns the hash code for the current sequence.\r\n            </summary>\r\n            <returns>The integer hash code.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Enqueue(`0)\">\r\n            <summary>\r\n            Enqueue a value and return a new queue.\r\n            </summary>\r\n            <param name=\"value\">The value to enqueue.</param>\r\n            <returns>A new queue with <paramref name=\"value\"/> as its last element.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Append(Sasa.Collections.PQueue{`0})\">\r\n            <summary>\r\n            Appends the elements of two queues.\r\n            </summary>\r\n            <param name=\"other\">The queue whose elements we should append.</param>\r\n            <returns>A new queue consisting of this queue's elements followed by <paramref name=\"other\"/>'s elements.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Dequeue(`0@)\">\r\n            <summary>\r\n            Dequeue the first value in the queue.\r\n            </summary>\r\n            <param name=\"value\">The first value in the queue.</param>\r\n            <returns>Returns a new queue minus the first value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.Dequeue\">\r\n            <summary>\r\n            Remove an item from the collection\r\n            </summary>\r\n            <returns>A pair of a new collection without the item, and the item that was removed.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator over the given list.\r\n            </summary>\r\n            <returns>An enumeration over the list.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.op_Equality(Sasa.Collections.PQueue{`0},Sasa.Collections.PQueue{`0})\">\r\n            <summary>\r\n            Test two queues for equality.\r\n            </summary>\r\n            <param name=\"left\">The left queue.</param>\r\n            <param name=\"right\">The right queue.</param>\r\n            <returns>Returns true if they are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.op_Inequality(Sasa.Collections.PQueue{`0},Sasa.Collections.PQueue{`0})\">\r\n            <summary>\r\n            Test two sequences for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left sequence.</param>\r\n            <param name=\"right\">The right sequence.</param>\r\n            <returns>Returns true if they are not equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue`1.ToString\">\r\n            <summary>\r\n            Converts a queue to a string.\r\n            </summary>\r\n            <returns>A string representation of the queue.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.PQueue`1.Empty\">\r\n            <summary>\r\n            An empty queue.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.PQueue`1.IsEmpty\">\r\n            <summary>\r\n            Returns true if the queue is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.PQueue`1.Value\">\r\n            <summary>\r\n            Returns the first value in the queue.\r\n            </summary>\r\n            <exception cref=\"T:System.InvalidOperationException\">Thrown if the queue is empty.</exception>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.PQueue\">\r\n            <summary>\r\n            Extension methods on <see cref=\"T:Sasa.Collections.PQueue`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.PQueue.ToQueue``1(Sasa.Collections.Seq{``0})\">\r\n            <summary>\r\n            Convert a sequence to a queue.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of elements.</typeparam>\r\n            <param name=\"seq\">The sequence to convert to a queue.</param>\r\n            <returns>A queue whose first element is the top of the stack.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.CodeGen\">\r\n            <summary>\r\n            Utility functinos for code generation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.CodeGen.Function``1(System.Type,System.String,System.Reflection.MethodAttributes,System.Boolean,System.Action{System.Reflection.Emit.ILGenerator})\">\r\n            <summary>\r\n            Create a dynamic method.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the dynamic method to create.</typeparam>\r\n            <param name=\"type\">The type to which this delegate should be a member.</param>\r\n            <param name=\"methodName\">The name of the delegate's method.</param>\r\n            <param name=\"attributes\">The method attributes.</param>\r\n            <param name=\"saveAssembly\">Flag indicating whether the generated code should be saved to a dll.</param>\r\n            <param name=\"generate\">A call back that performs the code generation.</param>\r\n            <returns>An dynamically created instance of the given delegate type.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Env`2\">\r\n            <summary>\r\n            Environment mapping names to values, matching the semantics of lexical scoping.\r\n            </summary>\r\n            <remarks>\r\n            This is essentially a purely functional dictionary\r\n            that supports shadowed values.\r\n            </remarks>\r\n            <typeparam name=\"K\">The type of keys.</typeparam>\r\n            <typeparam name=\"V\">The type of values.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Env`2.Find(`0)\">\r\n            <summary>\r\n            Find the value bound to the key.\r\n            </summary>\r\n            <param name=\"key\">The key to look up.</param>\r\n            <returns>The latest value corresponding to that key.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Env`2.GetEnumerator\">\r\n            <summary>\r\n            Generate an enumerator for this map.\r\n            </summary>\r\n            <returns>\r\n            Returns an enumerator over all the bindings in last-in-first-out order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Env`2.Bind(`0,`1)\">\r\n            <summary>\r\n            Bind a value to the given name under this environment.\r\n            </summary>\r\n            <param name=\"key\">The key under which the value is bound.</param>\r\n            <param name=\"value\">The value being bound.</param>\r\n            <returns>A new Env&lt;V&gt; containing the new binding.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Env`2.ToString\">\r\n            <summary>\r\n            Generate a string representation of the current environment.\r\n            </summary>\r\n            <returns>A string representation of the bindings in last-in-first-out-order.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Env`2.Empty\">\r\n            <summary>\r\n            The empty environment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Collections.Env`2.Item(`0)\">\r\n            <summary>\r\n            Find the value bound to the key.\r\n            </summary>\r\n            <param name=\"key\">The key to look up.</param>\r\n            <returns>The latest value corresponding to that key.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Types\">\r\n            <summary>\r\n            Extensions to System.Type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.Subtypes(System.Type,System.Type)\">\r\n            <summary>\r\n            Returns true if the given types are in a subtyping relationship.\r\n            </summary>\r\n            <param name=\"subtype\">The subtype.</param>\r\n            <param name=\"supertype\">The potential supertype.</param>\r\n            <returns>True if <paramref name=\"subtype\"/> is a subtype of <paramref name=\"supertype\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.Subtypes``1(System.Type)\">\r\n            <summary>\r\n            Returns true if the given types are in a subtyping relationship.\r\n            </summary>\r\n            <typeparam name=\"T\">The potential supertype.</typeparam>\r\n            <param name=\"subtype\">The subtype.</param>\r\n            <returns>True if <paramref name=\"subtype\"/> is a subtype of <typeparamref name=\"T\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.Subtypes``2\">\r\n            <summary>\r\n            Returns true if the given types are in a subtyping relationship.\r\n            </summary>\r\n            <typeparam name=\"TSub\">The subtype.</typeparam>\r\n            <typeparam name=\"TSup\">The potential supertype.</typeparam>\r\n            <returns>True if <typeparamref name=\"TSub\"/> is a subtype of <typeparamref name=\"TSup\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.ShortName(System.Type)\">\r\n            <summary>\r\n            Return the shortest string required to identify a type.\r\n            </summary>\r\n            <param name=\"typ\">The type to format as a string.</param>\r\n            <returns>A string representation of the type.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.ShortGenericType(System.Type,System.Type[],System.Text.StringBuilder)\">\r\n            <summary>\r\n            Generates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.\r\n            </summary>\r\n            <param name=\"typ\">The generic type definition.</param>\r\n            <param name=\"genericArguments\">The generic type arguments.</param>\r\n            <param name=\"sb\">The StringBuilder to which the type string should be written.</param>\r\n            <returns>An abbreviated generic type name.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.ToShortName(System.Type,System.Text.StringBuilder)\">\r\n            <summary>\r\n            Return the shortest string required to identify a type.\r\n            </summary>\r\n            <param name=\"typ\">The type to format as a string.</param>\r\n            <param name=\"sb\">The StringBuilder to which the type string should be written.</param>\r\n            <returns>A string representation of the type.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.ShortGenericType(System.Type,System.Type[])\">\r\n            <summary>\r\n            Generates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.\r\n            </summary>\r\n            <param name=\"typ\">The generic type definition.</param>\r\n            <param name=\"genericArguments\">The generic type arguments.</param>\r\n            <returns>An abbreviated generic type name.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Types.IsGenericTypeInstance(System.Type)\">\r\n            <summary>\r\n            Checks that the type is a generic type with all generic parameters specified.\r\n            </summary>\r\n            <param name=\"typ\">The type to test.</param>\r\n            <returns>True if the type is instaniated with all generic parameters, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Atomics\">\r\n            <summary>\r\n            Extensions to System.Threading.Interlocked.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.Set``1(``0@,``0,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <param name=\"comparand\">The current value of the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.Set``1(``0@,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.Set``1(Sasa.Ref{``0},``0,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <param name=\"comparand\">The current value of the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.Set``1(Sasa.Ref{``0},``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.SetFailed``1(``0@,``0,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <param name=\"comparand\">The current value of the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.SetFailed``1(``0@,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.SetFailed``1(Sasa.Ref{``0},``0,``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <param name=\"comparand\">The current value of the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Atomics.SetFailed``1(Sasa.Ref{``0},``0)\">\r\n            <summary>\r\n            Perform an atomic set.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value being swapped.</typeparam>\r\n            <param name=\"slot\">The slot in which to place the new value.</param>\r\n            <param name=\"value\">The new value to place in the slot.</param>\r\n            <returns>Returns true if successfully updated, false if another thread updated instead.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Tuple\">\r\n            <summary>\r\n            Tuple convenience functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple.KV``2(``0,``1)\">\r\n            <summary>\r\n            Construct a KeyValuePair from the given values.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <param name=\"t\">The first value.</param>\r\n            <param name=\"u\">The second value.</param>\r\n            <returns>A new KeyValuePair.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple._``2(``0,``1)\">\r\n            <summary>\r\n            Construct a Pair from the given values.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <param name=\"t\">The first value.</param>\r\n            <param name=\"u\">The second value.</param>\r\n            <returns>A new Pair.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple._``3(``0,``1,``2)\">\r\n            <summary>\r\n            Construct a Triple from the given values.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <typeparam name=\"V\">The third type.</typeparam>\r\n            <param name=\"t\">The first value.</param>\r\n            <param name=\"u\">The second value.</param>\r\n            <param name=\"v\">The third value.</param>\r\n            <returns>A new Triple.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple._``4(``0,``1,``2,``3)\">\r\n            <summary>\r\n            Construct a Quad from the given values.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <typeparam name=\"V\">The third type.</typeparam>\r\n            <typeparam name=\"Q\">The fourth type.</typeparam>\r\n            <param name=\"t\">The first value.</param>\r\n            <param name=\"u\">The second value.</param>\r\n            <param name=\"v\">The third value.</param>\r\n            <param name=\"q\">The fourth value.</param>\r\n            <returns>A new Quad.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple.Flatten``4(Sasa.Pair{Sasa.Pair{``0,``1},Sasa.Pair{``2,``3}})\">\r\n            <summary>\r\n            Flatten a nested pair of pairs into a Quad.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <typeparam name=\"V\">The third type.</typeparam>\r\n            <typeparam name=\"Q\">The fourth type.</typeparam>\r\n            <param name=\"nested\">A nested tuple to flatten into a single tuple.</param>\r\n            <returns>A flattened tuple.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple.Flatten``3(Sasa.Pair{Sasa.Pair{``0,``1},``2})\">\r\n            <summary>\r\n            Flatten a nested pair of a pair into a Triple.\r\n            </summary>\r\n            <typeparam name=\"T\">The first type.</typeparam>\r\n            <typeparam name=\"U\">The second type.</typeparam>\r\n            <typeparam name=\"V\">The third type.</typeparam>\r\n            <param name=\"nested\">A nested tuple to flatten into a single tuple.</param>\r\n            <returns>A flattened tuple.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Tuple._``1(``0[])\">\r\n            <summary>\r\n            A syntactic shortcut to create arrays of values leveraging type inference.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the array.</typeparam>\r\n            <param name=\"values\">The values to create.</param>\r\n            <returns>An array of the provided values.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Weak`1\">\r\n            <summary>\r\n            Exposes a strongly typed interface to an encapsulated WeakReference.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object in the WeakReference.</typeparam>\r\n        </member>\r\n        <member name=\"T:Sasa.IRef`1\">\r\n            <summary>\r\n            A mutable reference.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value the reference contains.</typeparam>\r\n        </member>\r\n        <member name=\"P:Sasa.IRef`1.Value\">\r\n            <summary>\r\n            The value in the reference.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.#ctor(System.WeakReference)\">\r\n            <summary>\r\n            Construct a typed weak reference from the given WeakReference.\r\n            </summary>\r\n            <param name=\"reference\">The WeakReference to encapsulate.</param>\r\n            <exception cref=\"T:System.InvalidCastException\">If the provided WeakReference does not point\r\n            to an object of type T.</exception>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.#ctor(`0)\">\r\n            <summary>\r\n            Encapsulate the given object in a Weak ref.\r\n            </summary>\r\n            <param name=\"value\">The object to encapsulate in a Weak reference.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.TryGetValue(`0@)\">\r\n            <summary>\r\n            Extract the value behind the weak reference.\r\n            </summary>\r\n            <param name=\"value\">The underlying value.</param>\r\n            <returns>True if the value is alive, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.Equals(`0)\">\r\n            <summary>\r\n            Compares the given object for equality.\r\n            </summary>\r\n            <param name=\"other\">The object to compare against.</param>\r\n            <returns>True if the underlying object is equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.Equals(Sasa.Weak{`0})\">\r\n            <summary>\r\n            Compares the given object for equality.\r\n            </summary>\r\n            <param name=\"other\">The object to compare against.</param>\r\n            <returns>True if the underlying object is equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.Equals(System.Object)\">\r\n            <summary>\r\n            Equality test.\r\n            </summary>\r\n            <param name=\"obj\">The object to compare for equality.</param>\r\n            <returns>True if the objects are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.GetHashCode\">\r\n            <summary>\r\n            Hashcode override.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.Equals(System.WeakReference)\">\r\n            <summary>\r\n            Compares the given object for equality.\r\n            </summary>\r\n            <param name=\"other\">The object to compare against.</param>\r\n            <returns>True if the underlying object is equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Implicit(`0)~Sasa.Weak{`0}\">\r\n            <summary>\r\n            Implicitly convert a value of type T to a Weak ref if needed.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A Weak reference to the value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Implicit(Sasa.Weak{`0})~`0\">\r\n            <summary>\r\n            Implicitly extract the value encapsulated in the Weak ref.\r\n            </summary>\r\n            <param name=\"weak\">The Weak reference from which to extract the value.</param>\r\n            <returns>The value encapsulated in the Weak ref.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Implicit(Sasa.Weak{`0})~System.WeakReference\">\r\n            <summary>\r\n            Implicitly extract the WeakReference encapsulated in the Weak value.\r\n            </summary>\r\n            <param name=\"weak\">The Weak reference from which to extract the WeakReference.</param>\r\n            <returns>The WeakReference encapsulated in the Weak value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Equality(Sasa.Weak{`0},Sasa.Weak{`0})\">\r\n            <summary>\r\n            Compares two weak references for equality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Equality(Sasa.Weak{`0},`0)\">\r\n            <summary>\r\n            Compares two weak references for equality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Equality(`0,Sasa.Weak{`0})\">\r\n            <summary>\r\n            Compares two weak references for equality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Inequality(Sasa.Weak{`0},Sasa.Weak{`0})\">\r\n            <summary>\r\n            Compares two weak references for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if not equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Inequality(Sasa.Weak{`0},`0)\">\r\n            <summary>\r\n            Compares two weak references for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if not equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Weak`1.op_Inequality(`0,Sasa.Weak{`0})\">\r\n            <summary>\r\n            Compares two weak references for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first object to compare.</param>\r\n            <param name=\"right\">The second object to compare.</param>\r\n            <returns>True if not equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Weak`1.Value\">\r\n            <summary>\r\n            Access the underlying value, if it still exists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Weak`1.IsAlive\">\r\n            <summary>\r\n            Returns true if the reference is still alive.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Pair`2\">\r\n            <summary>\r\n            A 2-element tuple type.\r\n            </summary>\r\n            <typeparam name=\"T0\">Type of Pair.First.</typeparam>\r\n            <typeparam name=\"T1\">Type of Pair.Second.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.#ctor(`0,`1)\">\r\n            <summary>\r\n            Construct a new Pair.\r\n            </summary>\r\n            <param name=\"first\">Value of the first element.</param>\r\n            <param name=\"second\">Value of the second element.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.Bind(`0@,`1@)\">\r\n            <summary>\r\n            Bind all tuple elements to locals.\r\n            </summary>\r\n            <param name=\"first\">The first value.</param>\r\n            <param name=\"second\">The second value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.ToKeyValue\">\r\n            <summary>\r\n            Convert a Pair to a KeyValuePair.\r\n            </summary>\r\n            <returns>A KeyValuePair, where Key=First, Value=Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.Equals(Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Test Pair equality element-wise.\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns>True if the pairs are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.Equals(System.Object)\">\r\n            <summary>\r\n            Test equality.\r\n            </summary>\r\n            <param name=\"obj\">The object to compare to.</param>\r\n            <returns>True if the objects are equal, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.GetHashCode\">\r\n            <summary>\r\n            Compute hash code.\r\n            </summary>\r\n            <returns>Hash code for the encapsulated values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.CompareTo(Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Compare the two values, Pair.First first, then Pair.Second if Pair.First are equal.\r\n            </summary>\r\n            <param name=\"other\">The Pair to compare against.</param>\r\n            <returns>\r\n            Returns zero if the pairs are equal element-wise, returns a number greater than zero if\r\n            the current pair is greater than <paramref name=\"other\"/> element-wise, else returns a\r\n            number greater than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.ToString\">\r\n            <summary>\r\n            Return a string representation of this Pair.\r\n            </summary>\r\n            <returns>A string representation of this Pair.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_Implicit(Sasa.Pair{`0,`1})~System.Collections.Generic.KeyValuePair{`0,`1}\">\r\n            <summary>\r\n            Implicitly convert Pair to KeyValuePair.\r\n            </summary>\r\n            <param name=\"pair\">The Pair to convert.</param>\r\n            <returns>A KeyValuePair, where Key=First, Value=Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_Implicit(System.Collections.Generic.KeyValuePair{`0,`1})~Sasa.Pair{`0,`1}\">\r\n            <summary>\r\n            Implicitly convert KeyValuePair to Pair.\r\n            </summary>\r\n            <param name=\"pair\">The KeyValuePair to convert.</param>\r\n            <returns>A new Pair instance, where First=Key, and Second=Value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_Equality(Sasa.Pair{`0,`1},Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Compares two Pairs for equality.\r\n            </summary>\r\n            <param name=\"left\">The first Pair.</param>\r\n            <param name=\"right\">The second Pair.</param>\r\n            <returns>Returns true if the Pairs are equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_Inequality(Sasa.Pair{`0,`1},Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Compares two Pairs for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first Pair.</param>\r\n            <param name=\"right\">The second Pair.</param>\r\n            <returns>Returns true if the Pairs are not equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_LessThan(Sasa.Pair{`0,`1},Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Orders two pairs.\r\n            </summary>\r\n            <param name=\"left\">The first Pair.</param>\r\n            <param name=\"right\">The second Pair.</param>\r\n            <returns>\r\n            Returns zero if the pairs are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Pair`2.op_GreaterThan(Sasa.Pair{`0,`1},Sasa.Pair{`0,`1})\">\r\n            <summary>\r\n            Orders two pairs.\r\n            </summary>\r\n            <param name=\"left\">The first Pair.</param>\r\n            <param name=\"right\">The second Pair.</param>\r\n            <returns>\r\n            Returns zero if the pairs are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Pair`2.First\">\r\n            <summary>\r\n            First element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Pair`2.Second\">\r\n            <summary>\r\n            Second element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.String.Strings\">\r\n            <summary>\r\n            String extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.IsNullOrEmpty(System.String)\">\r\n            <summary>\r\n            Returns true if string is null or empty.\r\n            </summary>\r\n            <param name=\"s\">The string to test.</param>\r\n            <returns>True if the string is null or of length 0.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.IfNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Ensures returned string is not null or empty.\r\n            </summary>\r\n            <param name=\"s\">The string to test.</param>\r\n            <param name=\"otherwise\">The string to return if 's is null or empty.</param>\r\n            <returns>Returns the string if the not null or of length 0, or 'otherwise' otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Slice(System.String,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Return a slice of a string delineated by the start and end indices.\r\n            </summary>\r\n            <param name=\"s\">The string to slice.</param>\r\n            <param name=\"start\">The start of the slice.</param>\r\n            <param name=\"end\">The end of the slice.</param>\r\n            <returns>The string slice.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.ToFilePath(System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n            Returns a filesystem path given a stream of path components.\r\n            </summary>\r\n            <param name=\"components\">The sequence of component paths.</param>\r\n            <returns>A file system path separated by the OS-specific separator character.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.ToFilePath(System.String[])\">\r\n            <summary>\r\n            Returns a filesystem path given an array of path components.\r\n            </summary>\r\n            <param name=\"components\">The array of component paths.</param>\r\n            <returns>A file system path separated by the OS-specific separator character.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.WordWrapAt(System.String,System.Int32)\">\r\n            <summary>\r\n            Wraps the string at the given column index.\r\n            </summary>\r\n            <param name=\"s\">The string to process.</param>\r\n            <param name=\"column\">The column at which to wrap the string.</param>\r\n            <returns>A stream of strings representing the wrapped lines. String.Length is &lt;= column.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.HardWrapAt(System.String,System.Int32)\">\r\n            <summary>\r\n            Wraps the string at the given column index.\r\n            </summary>\r\n            <param name=\"s\">The string to process.</param>\r\n            <param name=\"column\">The column at which to wrap the string.</param>\r\n            <returns>A stream of strings representing the wrapped lines. String.Length is &lt;= column.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Lines(System.String)\">\r\n            <summary>\r\n            Returns the string split into individual lines.\r\n            </summary>\r\n            <param name=\"s\">The string to split.</param>\r\n            <returns>An array of all the lines in the string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Words(System.String)\">\r\n            <summary>\r\n            Returns an array split by whitespace.\r\n            </summary>\r\n            <param name=\"s\">The string to split.</param>\r\n            <returns>An array of strings which were separate by whitespace in the original string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.ToBase64(System.String)\">\r\n            <summary>\r\n            Convert a string to Base64.\r\n            </summary>\r\n            <param name=\"s\">The string to convert.</param>\r\n            <returns>The Base64-encoded string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.FromBase64(System.String)\">\r\n            <summary>\r\n            Convert a string from a Base64 encoded string to another string.\r\n            </summary>\r\n            <param name=\"s\">The string the convert.</param>\r\n            <returns>The unencoded string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Split(System.String,System.StringSplitOptions,System.Char[])\">\r\n            <summary>\r\n            Split the string according to the given options and delimiters.\r\n            </summary>\r\n            <param name=\"input\">The input string.</param>\r\n            <param name=\"options\">The options to use when splitting the string.</param>\r\n            <param name=\"delimiter\">The delimiters used to split the string.</param>\r\n            <returns>The split string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Split(System.String,System.StringSplitOptions,System.String[])\">\r\n            <summary>\r\n            Split the string according to the given options and delimiters.\r\n            </summary>\r\n            <param name=\"input\">The input string.</param>\r\n            <param name=\"options\">The options to use when splitting the string.</param>\r\n            <param name=\"delimiter\">The delimiters used to split the string.</param>\r\n            <returns>The split string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.SliceEquals(System.String,System.Int32,System.String)\">\r\n            <summary>\r\n            Checks the value of a substring.\r\n            </summary>\r\n            <param name=\"first\">The string to inspect.</param>\r\n            <param name=\"start\">The index at which to check for the substring.</param>\r\n            <param name=\"sub\">The string to use for comparison.</param>\r\n            <returns>True if string <paramref name=\"sub\"/> is found at <paramref name=\"first\"/>[<paramref name=\"start\"/>].</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.String.Strings.Tokenize(System.String,System.String[])\">\r\n            <summary>\r\n            Searches the input stream for a set of tokens;\r\n            </summary>\r\n            <param name=\"input\">The input string to search.</param>\r\n            <param name=\"tokens\">The list of tokens to search for.</param>\r\n            <returns>A stream of tokens.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.String.Strings.Token\">\r\n            <summary>\r\n            Tokens identified by the Tokenize function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.String.Strings.Token.Index\">\r\n            <summary>\r\n            The index marking the beginning of the token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.String.Strings.Token.Tok\">\r\n            <summary>\r\n            The token identified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.String.Strings.Token.Input\">\r\n            <summary>\r\n            The input string being searched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`2\">\r\n            <summary>\r\n            This type encapsulates either a value of type <typeparamref name=\"TFirst\"/>,\r\n            or <typeparamref name=\"TSecond\"/>.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">Possible 'First' type.</typeparam>\r\n            <typeparam name=\"TSecond\">Possible 'Second' type.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.op_Implicit(`0)~Sasa.Either{`0,`1}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TFirst\"/> can be implicitly converted to First.\r\n            </summary>\r\n            <param name=\"f\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.op_Implicit(`1)~Sasa.Either{`0,`1}\">\r\n            <summary>\r\n            A value of type <typeparamref name=\"TSecond\"/> can be implicitly converted to Second.\r\n            </summary>\r\n            <param name=\"s\">The value to implicitly convert.</param>\r\n            <returns>A new Either initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.op_Explicit(Sasa.Either{`0,`1})~`0\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.op_Explicit(Sasa.Either{`0,`1})~`1\">\r\n            <summary>\r\n            An explicit cast on an Either type ensures the cast is appropriate.\r\n            </summary>\r\n            <param name=\"e\">The Either type to convert.</param>\r\n            <returns>The value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.First(`0)\">\r\n            <summary>\r\n            Returns an instances initialized to First.\r\n            </summary>\r\n            <param name=\"f\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to First.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.Second(`1)\">\r\n            <summary>\r\n            Returns an instances initialized to Second.\r\n            </summary>\r\n            <param name=\"s\">The value used to initialize the Either type.</param>\r\n            <returns>An Either type initialized to Second.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.Do(System.Action{`0},System.Action{`1})\">\r\n            <summary>\r\n            Perform an action on the encapsulated value.\r\n            </summary>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.Select``1(System.Func{`0,``0},System.Func{`1,``0})\">\r\n            <summary>\r\n            Transform the encapsulated value into a <typeparamref name=\"TReturn\"/>.\r\n            </summary>\r\n            <typeparam name=\"TReturn\">The type to return.</typeparam>\r\n            <param name=\"first\">Function to apply if encapsulated value is of type <typeparamref name=\"TFirst\"/>.</param>\r\n            <param name=\"second\">Function to apply if encapsulated value is of type <typeparamref name=\"TSecond\"/>.</param>\r\n            <returns>The computed value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.Select(`0)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TFirst\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TFirst\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Either`2.Select(`1)\">\r\n            <summary>\r\n            If the type is <typeparamref name=\"TSecond\"/>, return the value, else return <paramref name=\"otherwise\"/>.\r\n            </summary>\r\n            <param name=\"otherwise\">The value to return if Either is not the expected type.</param>\r\n            <returns>The encapsulated <typeparamref name=\"TSecond\"/>, or <paramref name=\"otherwise\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`2.IsFirst\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TFirst\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Either`2.IsSecond\">\r\n            <summary>\r\n            Returns true if encapsulated type is of type <typeparamref name=\"TSecond\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`2._First\">\r\n            <summary>\r\n            The internal class representing the 'First' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Either`2._Second\">\r\n            <summary>\r\n            The internal class representing the 'Second' type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Union16\">\r\n            <summary>\r\n            Represents a 16-bit union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union16.Unsigned\">\r\n            <summary>\r\n            The unsigned fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union16.Signed\">\r\n            <summary>\r\n            The signed fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Union16.#ctor(System.Int16)\">\r\n            <summary>\r\n            Construct a flat 16-bit union from a signed value.\r\n            </summary>\r\n            <param name=\"value\">The signed value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union16.#ctor(System.UInt16)\">\r\n            <summary>\r\n            Construct a flat 16-bit union from an unsigned value.\r\n            </summary>\r\n            <param name=\"value\">The unsigned value.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Union32\">\r\n            <summary>\r\n            Represents a 32-bit union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union32.Unsigned\">\r\n            <summary>\r\n            The unsigned fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union32.Signed\">\r\n            <summary>\r\n            The signed fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union32.Single\">\r\n            <summary>\r\n            The single fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Union32.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a flat 32-bit union from a signed value.\r\n            </summary>\r\n            <param name=\"value\">The signed value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union32.#ctor(System.UInt32)\">\r\n            <summary>\r\n            Construct a flat 32-bit union from an unsigned value.\r\n            </summary>\r\n            <param name=\"value\">The unsigned value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union32.#ctor(System.Single)\">\r\n            <summary>\r\n            Construct a flat 32-bit union from an unsigned value.\r\n            </summary>\r\n            <param name=\"value\">The single-precision floating point value.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Union64\">\r\n            <summary>\r\n            Represents a 64-bit union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union64.Unsigned\">\r\n            <summary>\r\n            The unsigned fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union64.Signed\">\r\n            <summary>\r\n            The signed fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union64.Double\">\r\n            <summary>\r\n            The double-precision floating point fragment of the union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Union64.#ctor(System.Int64)\">\r\n            <summary>\r\n            Construct a flat 64-bit union from a signed value.\r\n            </summary>\r\n            <param name=\"value\">The signed value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union64.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Construct a flat 64-bit union from an unsigned value.\r\n            </summary>\r\n            <param name=\"value\">The unsigned value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union64.#ctor(System.Double)\">\r\n            <summary>\r\n            Construct a flat 64-bit union from a double-precision floating point value.\r\n            </summary>\r\n            <param name=\"value\">The double-precision floating point value.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Union128\">\r\n            <summary>\r\n            Represents a 128-bit decimal union.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union128.Decimal\">\r\n            <summary>\r\n            The decimal value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union128.First64\">\r\n            <summary>\r\n            The first 64-bits of the decimal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Sasa.Union128.Second64\">\r\n            <summary>\r\n            The second 64-bits of the decimal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Union128.#ctor(System.Decimal)\">\r\n            <summary>\r\n            Construct a flat 128-bit union from a decimal.\r\n            </summary>\r\n            <param name=\"value\">The decimal value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Union128.#ctor(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Construct a flat 128-bit union from two unsigned 64-bit values.\r\n            </summary>\r\n            <param name=\"first64\">The first 64-bits.</param>\r\n            <param name=\"second64\">The second 64-bits.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Endian\">\r\n            <summary>\r\n            Endian conversions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.Int16)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.UInt16)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(Sasa.Union16)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(Sasa.Union32)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.Int32)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.UInt32)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.Int64)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(Sasa.Union64)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.UInt64)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.ToBig(System.Decimal)\">\r\n            <summary>\r\n            Convert the value to big endian.\r\n            </summary>\r\n            <param name=\"value\">The host endian encoded value to convert.</param>\r\n            <returns>Big endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(Sasa.Union16)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.Int16)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.UInt16)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.Int32)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(Sasa.Union32)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.UInt32)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(Sasa.Union64)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.Int64)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.UInt64)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.FromBig(System.Decimal)\">\r\n            <summary>\r\n            Convert the value from big endian to host endian encoding.\r\n            </summary>\r\n            <param name=\"value\">The big endian encoded value to convert.</param>\r\n            <returns>Host endian encoded value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(Sasa.Union128)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"value\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.Decimal)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"value\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(Sasa.Union16)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.Int16)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.UInt16)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.UInt32)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.Int32)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(Sasa.Union32)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.UInt64)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(System.Int64)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Endian.Swap(Sasa.Union64)\">\r\n            <summary>\r\n            Swap upper and lower bytes.\r\n            </summary>\r\n            <param name=\"i\">The value being swapped.</param>\r\n            <returns>The swapped value.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Web.Url64\">\r\n            <summary>\r\n            Encodes bytes into a base64 alphabet that is safe to embed into URLs.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Web.Url64.ToUrl64(System.Byte[])\">\r\n            <summary>\r\n            Convert bytes to a Url64 string.\r\n            </summary>\r\n            <param name=\"b\">The binary data.</param>\r\n            <returns>The equivalent Url64 encoded string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Web.Url64.FromUrl64(System.String)\">\r\n            <summary>\r\n            Convert from a Url64 string representation back to binary.\r\n            </summary>\r\n            <param name=\"s\">The string in Url64 form.</param>\r\n            <returns>The decoded bytes corresponding to the given string.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.Enumerables\">\r\n            <summary>\r\n            Extensions to IEnumerable.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Do``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})\">\r\n            <summary>\r\n            Consumes a sequence while applying a function to each element.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The enumerator.</param>\r\n            <param name=\"f\">The function to apply.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Apply``1(System.Collections.Generic.IEnumerable{``0},System.Action{``0})\">\r\n            <summary>\r\n            Apply a function to each element of the collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The enumerator.</param>\r\n            <param name=\"f\">The function to aplpy.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Push``1(``0,System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the given item to the beginning of a sequence.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"head\">The new first element of the enumeration.</param>\r\n            <param name=\"tail\">The rest of the enumeration.</param>\r\n            <returns>An enumeration with 'head' as the first value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Append``1(System.Collections.Generic.IEnumerable{``0},``0)\">\r\n            <summary>\r\n            Append an item to the end of an enumeration.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The enumeration being modified.</param>\r\n            <param name=\"last\">The element being appended to the enumeration.</param>\r\n            <returns>An enumeration with a new last element.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Flatten``1(System.Collections.Generic.IEnumerable{System.Collections.Generic.IEnumerable{``0}})\">\r\n            <summary>\r\n            Flattens a nested enumerable.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The nested enumerable.</param>\r\n            <returns>A flattened stream.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Format``1(System.Collections.Generic.IEnumerable{``0},System.String)\">\r\n            <summary>\r\n            Formats each element of the stream with the given separator between them.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The input stream to format.</param>\r\n            <param name=\"separator\">The element separating each element of the stream.</param>\r\n            <returns>A formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Format``1(System.Collections.Generic.IEnumerable{``0},System.String,System.Func{``0,System.String})\">\r\n            <summary>\r\n            Formats each element of the stream with the given separator between them.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The input stream to format.</param>\r\n            <param name=\"separator\">The element separating each element of the stream.</param>\r\n            <param name=\"toString\">The function used to convert each element to a string.</param>\r\n            <returns>A formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Format``1(System.Collections.Generic.IEnumerable{``0},System.String,System.Text.StringBuilder)\">\r\n            <summary>\r\n            Formats each element of the stream with the given separator between them.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The input stream to format.</param>\r\n            <param name=\"separator\">The element separating each element of the stream.</param>\r\n            <param name=\"output\">The StringBuilder to which the output is written.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Format``1(System.Collections.Generic.IEnumerable{``0},System.String,System.Text.StringBuilder,System.Func{``0,System.String})\">\r\n            <summary>\r\n            Formats each element of the stream with the given separator between them.\r\n            </summary>\r\n            <typeparam name=\"T\">The type being enumerated.</typeparam>\r\n            <param name=\"source\">The input stream to format.</param>\r\n            <param name=\"separator\">The element separating each element of the stream.</param>\r\n            <param name=\"output\">The StringBuilder to which the output is written.</param>\r\n            <param name=\"toString\">The function used to convert each element to a string.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.CompareTo``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Performs an ordered comparison on two sequences.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of elements in the sequence.</typeparam>\r\n            <param name=\"first\">The first sequence.</param>\r\n            <param name=\"second\">The second sequence.</param>\r\n            <returns>Zero if two sequences are equal, greater than zero if <paramref name=\"first\"/>\r\n            &gt; <paramref name=\"second\"/>, less than zero otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Generate``1(``0,System.Func{``0,Sasa.Option{``0}})\">\r\n            <summary>\r\n            Generate a sequence of elements given a generator function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of sequence elements.</typeparam>\r\n            <param name=\"seed\">The initial seed value.</param>\r\n            <param name=\"generator\">The generator function.</param>\r\n            <returns>A sequence of elements.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.CopyTo``1(System.Collections.Generic.IEnumerable{``0},``0[],System.Int32)\">\r\n            <summary>\r\n            Copy the elements of the stream to the given array starting at the given index.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of array elements.</typeparam>\r\n            <param name=\"source\">The source sequence.</param>\r\n            <param name=\"array\">The target array.</param>\r\n            <param name=\"start\">The starting index of the array.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Consume``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Consumes the entire sequence.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of elements in the sequence.</typeparam>\r\n            <param name=\"source\">The source sequence to consume.</param>\r\n            <remarks>\r\n            This is primarily of use to enumerators that induce side-effects while\r\n            producing values. Consume forces the side-effects eagerly instead of\r\n            lazily.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Enumerables.Transpose``1(System.Collections.Generic.IEnumerable{System.Collections.Generic.IEnumerable{``0}})\">\r\n            <summary>\r\n            Swaps the rows and columns of a nested sequence.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of elements in the sequence.</typeparam>\r\n            <param name=\"source\">The source sequence.</param>\r\n            <returns>A sequence whose rows and columns are swapped.</returns>\r\n            <remarks>\r\n            Note that this method will handle jagged sequences, but transposing\r\n            twice will not necessarily recover the same sequence as the original\r\n            input. All the jagged entries will be pushed to the last row.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.Ref`1\">\r\n            <summary>\r\n            Simple reference.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n        </member>\r\n        <member name=\"P:Sasa.Ref`1.Value\">\r\n            <summary>\r\n            The encapsulated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.ImmutableValue`1\">\r\n            <summary>\r\n            An immutable value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.ImmutableValue`1.#ctor(`0)\">\r\n            <summary>\r\n            Constructs an instance of a value.\r\n            </summary>\r\n            <param name=\"value\"></param>\r\n        </member>\r\n        <member name=\"P:Sasa.ImmutableValue`1.Value\">\r\n            <summary>\r\n            The encapsulated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Integers\">\r\n            <summary>\r\n            Extensions for core int values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.UpTo(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <returns>A stream of int from [start, end).</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.UpTo(System.Int32,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <param name=\"step\">The incremental value.</param>\r\n            <returns>A stream of int from [start, end) incremented by 'step'.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.UpTo(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <returns>A stream of uint from [start, end).</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.DownTo(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The upper incusive bound of the stream.</param>\r\n            <param name=\"end\">The lower exclusive bound of the stream.</param>\r\n            <returns>A stream of int from [start, end).</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.DownTo(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The upper incusive bound of the stream.</param>\r\n            <param name=\"end\">The lower exclusive bound of the stream.</param>\r\n            <returns>A stream of int from [start, end).</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Integers.Bound(System.Int32,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Bound the given int by the upper and lower values.\r\n            </summary>\r\n            <param name=\"value\">The int to bound.</param>\r\n            <param name=\"min\">The lower inclusive bound.</param>\r\n            <param name=\"max\">The upper inclusive bound.</param>\r\n            <returns>Returns i if min &lt;= i &lt;= max, or min or max if i is out of that range.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Decimals\">\r\n            <summary>\r\n            Extension methods on System.Decimal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Decimals.Bound(System.Decimal,System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Bound the given Decimal by the upper and lower values.\r\n            </summary>\r\n            <param name=\"value\">The value to bound.</param>\r\n            <param name=\"min\">The lower inclusive bound.</param>\r\n            <param name=\"max\">The upper inclusive bound.</param>\r\n            <returns>Returns <paramref name=\"value\"/> if <paramref name=\"min\"/> &lt;= <paramref name=\"value\"/> &lt;= <paramref name=\"max\"/>,\r\n            or <paramref name=\"min\"/> or <paramref name=\"max\"/> if <paramref name=\"value\"/> is out of that range.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Decimals.UpTo(System.Decimal,System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Returns a stream of numbers from start up to end.\r\n            </summary>\r\n            <param name=\"start\">The lower incusive bound of the stream.</param>\r\n            <param name=\"end\">The upper exclusive bound of the stream.</param>\r\n            <param name=\"step\">The increment used from <paramref name=\"start\"/> to <paramref name=\"end\"/>.</param>\r\n            <returns>A stream of decimal from [<paramref name=\"start\"/>, <paramref name=\"end\"/>).</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Quad`4\">\r\n            <summary>\r\n            A 4-element tuple type.\r\n            </summary>\r\n            <typeparam name=\"T0\">The type of the first value.</typeparam>\r\n            <typeparam name=\"T1\">The type of the second value.</typeparam>\r\n            <typeparam name=\"T2\">The type of the third value.</typeparam>\r\n            <typeparam name=\"T3\">The type of the fourth value.</typeparam>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.#ctor(`0,`1,`2,`3)\">\r\n            <summary>\r\n            Construct a new Quad.\r\n            </summary>\r\n            <param name=\"first\">The first value.</param>\r\n            <param name=\"second\">The second value.</param>\r\n            <param name=\"third\">The third value.</param>\r\n            <param name=\"fourth\">The fourth value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.Bind(`0@,`1@,`2@,`3@)\">\r\n            <summary>\r\n            Bind all tuple elements to locals.\r\n            </summary>\r\n            <param name=\"first\">The first value.</param>\r\n            <param name=\"second\">The second value.</param>\r\n            <param name=\"third\">The third value.</param>\r\n            <param name=\"fourth\">The fourth value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.Equals(Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Test equality of Quads element-wise.\r\n            </summary>\r\n            <param name=\"other\">The other Quad to compare for equality.</param>\r\n            <returns>True if the Quad instances match, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.Equals(System.Object)\">\r\n            <summary>\r\n            Test equality.\r\n            </summary>\r\n            <param name=\"obj\">Object to compare for equality.</param>\r\n            <returns>True if the objects match, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.GetHashCode\">\r\n            <summary>\r\n            Generate a hash code.\r\n            </summary>\r\n            <returns>The hash of the encapsulated values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.CompareTo(Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Compare the two values, testing sequentially, Quad.First, Quad.Second\r\n            Quad.Third, and Quad.Fourth for any values that can specify an \r\n            ordering.\r\n            </summary>\r\n            <param name=\"other\">The Quad to compare against.</param>\r\n            <returns>The ordering compares sequentially Quad.First, Quad.Second,\r\n            Quad.Third and Quad.Fourth until it finds an entry that ensures an\r\n            total order.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.ToString\">\r\n            <summary>\r\n            Return a string representation of this Quad.\r\n            </summary>\r\n            <returns>A string representation of this Quad.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.op_Equality(Sasa.Quad{`0,`1,`2,`3},Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Compares two Quads for equality.\r\n            </summary>\r\n            <param name=\"left\">The first Quad.</param>\r\n            <param name=\"right\">The second Quad.</param>\r\n            <returns>Returns true if the Quads are equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.op_Inequality(Sasa.Quad{`0,`1,`2,`3},Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Compares two Quads for inequality.\r\n            </summary>\r\n            <param name=\"left\">The first Quad.</param>\r\n            <param name=\"right\">The second Quad.</param>\r\n            <returns>Returns true if the Quads are not equal, and false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.op_LessThan(Sasa.Quad{`0,`1,`2,`3},Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Orders two pairs.\r\n            </summary>\r\n            <param name=\"left\">The first tuple.</param>\r\n            <param name=\"right\">The second tuple.</param>\r\n            <returns>\r\n            Returns zero if the tuples are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Quad`4.op_GreaterThan(Sasa.Quad{`0,`1,`2,`3},Sasa.Quad{`0,`1,`2,`3})\">\r\n            <summary>\r\n            Orders two tuples.\r\n            </summary>\r\n            <param name=\"left\">The first tuple.</param>\r\n            <param name=\"right\">The second tuple.</param>\r\n            <returns>\r\n            Returns zero if the tuples are equal, a number greater than zero if <paramref name=\"left\"/> is\r\n            greater than <paramref name=\"right\"/>, else a number less than zero.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Quad`4.First\">\r\n            <summary>\r\n            First element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Quad`4.Second\">\r\n            <summary>\r\n            Second element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Quad`4.Third\">\r\n            <summary>\r\n            Third element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Quad`4.Fourth\">\r\n            <summary>\r\n            Fourth element of the tuple.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Option`1\">\r\n            <summary>\r\n            Represents a possibly null value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <remarks>\r\n            When it comes to high assurance code, you should utilize Option and NonNull types for\r\n            method arguments, to declare which arguments may be null and which must necessarily be\r\n            non-null. The type checker will ensure that values are handled properly within the method,\r\n            and client code will receive the errors when passing in null references for NonNull values.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.#ctor(`0)\">\r\n            <summary>\r\n            Construct an optional value.\r\n            </summary>\r\n            <param name=\"value\">The wrapped value.</param>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.Equals(`0)\">\r\n            <summary>\r\n            Compares Option&lt;T&gt; and a T for equality.\r\n            </summary>\r\n            <param name=\"other\">The other object to compare to.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.Equals(Sasa.Option{`0})\">\r\n            <summary>\r\n            Compares two Option&lt;T&gt; instances for equality.\r\n            </summary>\r\n            <param name=\"other\">The other object to compare to.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.Equals(System.Object)\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"obj\">The other object to compare to.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for this type.\r\n            </summary>\r\n            <returns>A hash code.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.TryGetValue(`0@)\">\r\n            <summary>\r\n            Attempts to extract the value.\r\n            </summary>\r\n            <param name=\"value\">The value extracted.</param>\r\n            <returns>Returns true if a value was available, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Implicit(`0)~Sasa.Option{`0}\">\r\n            <summary>\r\n            An implicit conversion from any value to an optional value.\r\n            </summary>\r\n            <param name=\"value\">The value to be converted.</param>\r\n            <returns>Returns a wrapped optional reference.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.ToString\">\r\n            <summary>\r\n            Return a string representation.\r\n            </summary>\r\n            <returns>A string representation of the optional value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Equality(Sasa.Option{`0},Sasa.Option{`0})\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Inequality(Sasa.Option{`0},Sasa.Option{`0})\">\r\n            <summary>\r\n            Compares two objects for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are not equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Equality(Sasa.Option{`0},`0)\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Inequality(Sasa.Option{`0},`0)\">\r\n            <summary>\r\n            Compares two objects for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are not equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Equality(`0,Sasa.Option{`0})\">\r\n            <summary>\r\n            Compares two objects for equality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are equal.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option`1.op_Inequality(`0,Sasa.Option{`0})\">\r\n            <summary>\r\n            Compares two objects for inequality.\r\n            </summary>\r\n            <param name=\"left\">The left comparand.</param>\r\n            <param name=\"right\">The right comparand.</param>\r\n            <returns>True if the instances are not equal.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Option`1.Value\">\r\n            <summary>\r\n            The wrapped value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Sasa.Option`1.HasValue\">\r\n            <summary>\r\n            Returns true if there is a value.\r\n            </summary>\r\n            <returns>True if not null.</returns>\r\n        </member>\r\n        <member name=\"P:Sasa.Option`1.None\">\r\n            <summary>\r\n            An empty option value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Sasa.Option\">\r\n            <summary>\r\n            Option operations.\r\n            </summary>\r\n            <remarks>\r\n            This class provides all the LINQ overloads needed to transparently work\r\n            with System.Nullable&lt;T&gt; and Option&lt;&gt; in LINQ computations.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.ToOption``1(``0)\">\r\n            <summary>\r\n            Construct a new optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <param name=\"value\">The value to track.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.ToOption``1(System.Nullable{``0})\">\r\n            <summary>\r\n            Construct a new optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <param name=\"value\">A nullable value.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.ToNullable``1(Sasa.Option{``0})\">\r\n            <summary>\r\n            Construct a Nullable value type given an option type.\r\n            </summary>\r\n            <typeparam name=\"T\">The nullable type.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <returns>A new nullable value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Select``2(Sasa.Option{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Transforms the embedded value to a new value if it exists, otherwise\r\n            returns None.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned optional value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"some\">The function to apply if <paramref name=\"option\"/> has a value.</param>\r\n            <returns>\r\n            Returns <paramref name=\"some\"/>(<paramref name=\"option\"/>) if <code>o.HasValue</code>\r\n            is true, or <code>new Option(default(R))</code> otherwise.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Select``2(System.Nullable{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Transforms the embedded value to a new value if it exists, otherwise\r\n            returns None.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned optional value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"some\">The function to apply if <paramref name=\"option\"/> has a value.</param>\r\n            <returns>\r\n            Returns <paramref name=\"some\"/>(<paramref name=\"option\"/>) if <code>o.HasValue</code>\r\n            is true, or <code>new Option(default(R))</code> otherwise.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Select``2(Sasa.Option{``0},System.Func{``0,``1},``1)\">\r\n            <summary>\r\n            Performs a total match on the optional value and returns a new value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"some\">The function to call with the encapsulated value.</param>\r\n            <param name=\"none\">The return value if optional value is None.</param>\r\n            <returns>A value computed from the given functions.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Select``2(Sasa.Option{``0},System.Func{``0,``1},System.Func{``1})\">\r\n            <summary>\r\n            Performs a total match on the optional value and returns a new value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the encapsulated value.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"some\">The function to call with the encapsulated value.</param>\r\n            <param name=\"none\">The function to call if no value available.</param>\r\n            <returns>A value computed from the given functions.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Select``1(Sasa.Option{``0},``0)\">\r\n            <summary>\r\n            Returns the encapsulated value if Some, returns 'none' otherwise.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"none\">The value to return if o.IsNone.</param>\r\n            <returns>The value encapsulated in the option if <code>o.HasValue</code> is true,\r\n            <paramref name=\"none\"/> otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``2(Sasa.Option{``0},System.Func{``0,Sasa.Option{``1}})\">\r\n            <summary>\r\n            Project an optional value to another optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the original value.</typeparam>\r\n            <typeparam name=\"U\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The original optional instance.</param>\r\n            <param name=\"selector\">The projection function.</param>\r\n            <returns>A new optional value computed from the original.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``2(Sasa.Option{``0},System.Func{``0,System.Nullable{``1}})\">\r\n            <summary>\r\n            Project an optional value to another optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the original value.</typeparam>\r\n            <typeparam name=\"U\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The original optional instance.</param>\r\n            <param name=\"selector\">The projection function.</param>\r\n            <returns>A new optional value computed from the original.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``2(System.Nullable{``0},System.Func{``0,Sasa.Option{``1}})\">\r\n            <summary>\r\n            Project an optional value to another optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the original value.</typeparam>\r\n            <typeparam name=\"U\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The original optional instance.</param>\r\n            <param name=\"selector\">The projection function.</param>\r\n            <returns>A new optional value computed from the original.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``2(System.Nullable{``0},System.Func{``0,System.Nullable{``1}})\">\r\n            <summary>\r\n            Project an optional value to another optional value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the original value.</typeparam>\r\n            <typeparam name=\"U\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The original optional instance.</param>\r\n            <param name=\"selector\">The projection function.</param>\r\n            <returns>A new optional value computed from the original.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``3(Sasa.Option{``0},System.Func{``0,Sasa.Option{``1}},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects two optional values to a third value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first value.</typeparam>\r\n            <typeparam name=\"U\">The type of the second value.</typeparam>\r\n            <typeparam name=\"R\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The optional type.</param>\r\n            <param name=\"selector\">The intermediate projection function.</param>\r\n            <param name=\"result\">The final projection function.</param>\r\n            <returns>The returned optional value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``3(System.Nullable{``0},System.Func{``0,Sasa.Option{``1}},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects two optional values to a third value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first value.</typeparam>\r\n            <typeparam name=\"U\">The type of the second value.</typeparam>\r\n            <typeparam name=\"R\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The optional type.</param>\r\n            <param name=\"selector\">The intermediate projection function.</param>\r\n            <param name=\"result\">The final projection function.</param>\r\n            <returns>The returned optional value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``3(Sasa.Option{``0},System.Func{``0,System.Nullable{``1}},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects two optional values to a third value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first value.</typeparam>\r\n            <typeparam name=\"U\">The type of the second value.</typeparam>\r\n            <typeparam name=\"R\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The optional type.</param>\r\n            <param name=\"selector\">The intermediate projection function.</param>\r\n            <param name=\"result\">The final projection function.</param>\r\n            <returns>The returned optional value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.SelectMany``3(System.Nullable{``0},System.Func{``0,System.Nullable{``1}},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects two optional values to a third value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first value.</typeparam>\r\n            <typeparam name=\"U\">The type of the second value.</typeparam>\r\n            <typeparam name=\"R\">The type of the projected value.</typeparam>\r\n            <param name=\"option\">The optional type.</param>\r\n            <param name=\"selector\">The intermediate projection function.</param>\r\n            <param name=\"result\">The final projection function.</param>\r\n            <returns>The returned optional value.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Option.Do``1(Sasa.Option{``0},System.Action{``0})\">\r\n            <summary>\r\n            Performs the given action on the embedded value if it exists.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the optional value.</typeparam>\r\n            <param name=\"option\">The optional value.</param>\r\n            <param name=\"action\">The function to apply.</param>\r\n        </member>\r\n        <member name=\"T:Sasa.Func.Func\">\r\n            <summary>\r\n            Typed delegate extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Id``1(``0)\">\r\n            <summary>\r\n            The identity function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of value to return.</typeparam>\r\n            <param name=\"value\">The value to return.</param>\r\n            <returns>Simply returns <paramref name=\"value\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Fix``2(System.Func{System.Func{``0,``1},System.Func{``0,``1}})\">\r\n            <summary>\r\n            Compute the fixpoint of a given function.\r\n            </summary>\r\n            <typeparam name=\"T\">The argument type.</typeparam>\r\n            <typeparam name=\"R\">The return type.</typeparam>\r\n            <param name=\"f\">The function describing the body of the recursive function.</param>\r\n            <returns>A recursive definition of the given function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Fix``3(System.Func{System.Func{``0,``1,``2},System.Func{``0,``1,``2}})\">\r\n            <summary>\r\n            Compute the fixpoint of a given function.\r\n            </summary>\r\n            <typeparam name=\"T\">The first argument type.</typeparam>\r\n            <typeparam name=\"U\">The second argument type.</typeparam>\r\n            <typeparam name=\"R\">The return type.</typeparam>\r\n            <param name=\"f\">The function describing the body of the recursive function.</param>\r\n            <returns>A recursive definition of the given function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Const``2(``1)\">\r\n            <summary>\r\n            Constructs a function that simply returns a constant value.\r\n            </summary>\r\n            <typeparam name=\"TInput\">The type of input value.</typeparam>\r\n            <typeparam name=\"TConst\">The type of return value.</typeparam>\r\n            <param name=\"value\">The value to return.</param>\r\n            <returns>Simply returns <paramref name=\"value\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``3(System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a pair.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``4(System.Func{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a triple.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``5(System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a quad.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``2(System.Action{``0,``1})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a pair.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``3(System.Action{``0,``1,``2})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a triple.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Tuple``4(System.Action{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg function that takes a quad.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``3(System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``4(System.Func{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``5(System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth argument.</typeparam>\r\n            <typeparam name=\"R\">The type of the return value.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``2(System.Action{``0,``1})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``3(System.Action{``0,``1,``2})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Curry``4(System.Action{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Lift a multi-arg function to a single-arg curried function.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first argument.</typeparam>\r\n            <typeparam name=\"U\">The type of the second argument.</typeparam>\r\n            <typeparam name=\"V\">The type of the third argument.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth argument.</typeparam>\r\n            <param name=\"fn\">The function to curry.</param>\r\n            <returns>A curried function.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Empty``1(System.Action)\">\r\n            <summary>\r\n            Wraps an action that returns void into a function that returns Empty.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the function argument.</typeparam>\r\n            <param name=\"fn\">The delegate to wrap.</param>\r\n            <returns>A new delegate that returns Empty on invocation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Empty``1(System.Action{``0})\">\r\n            <summary>\r\n            Wraps an action that returns void into a function that returns Empty.\r\n            </summary>\r\n            <param name=\"fn\">The delegate to wrap.</param>\r\n            <returns>A new delegate that returns Empty on invocation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Empty``2(System.Action{``0,``1})\">\r\n            <summary>\r\n            Wraps an action that returns void into a function that returns Empty.\r\n            </summary>\r\n            <param name=\"fn\">The delegate to wrap.</param>\r\n            <returns>A new delegate that returns Empty on invocation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Empty``3(System.Action{``0,``1,``2})\">\r\n            <summary>\r\n            Wraps an action that returns void into a function that returns Empty.\r\n            </summary>\r\n            <param name=\"fn\">The delegate to wrap.</param>\r\n            <returns>A new delegate that returns Empty on invocation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Empty``4(System.Action{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Wraps an action that returns void into a function that returns Empty.\r\n            </summary>\r\n            <param name=\"fn\">The delegate to wrap.</param>\r\n            <returns>A new delegate that returns Empty on invocation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Func.Func.Coerce``1(System.Delegate)\">\r\n            <summary>\r\n            Coerces one delegate type to another.\r\n            </summary>\r\n            <typeparam name=\"TFunc\">The return delegate type</typeparam>\r\n            <param name=\"func\">The source delegate to coerce.</param>\r\n            <returns>A new delegate of the expected type.</returns>\r\n            <remarks>\r\n            Inspired by:\r\n            http://jacobcarpenters.blogspot.com/2006/06/cast-delegate.html\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Sasa.Enum.Enums\">\r\n            <summary>\r\n            Extensions for System.Enum.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.ToEnum``1(System.String)\">\r\n            <summary>\r\n            Parses an enumeration value from the string representation.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n            <param name=\"e\">The string representation of the enum.</param>\r\n            <returns>The enum corresponding to the string representation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.ToEnum``1(System.String,System.Boolean)\">\r\n            <summary>\r\n            Parses an enumeration value from the string representation.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n            <param name=\"e\">The string representation of the enum.</param>\r\n            <param name=\"ignoreCase\">Indicates whether the parse is case-sensitive.</param>\r\n            <returns>The enum corresponding to the string representation.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.IsDefined``1(``0)\">\r\n            <summary>\r\n            Returns true if the value is valid for the given enum type.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n            <param name=\"e\">The enum value to test.</param>\r\n            <returns>Returns true if the value is valid for the enum.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.Values``1\">\r\n            <summary>\r\n            Retrieves a sequence of the values of the constants in a specified enumeration.\r\n            </summary>\r\n            <typeparam name=\"E\">An enumeration type.</typeparam>\r\n            <returns>A typed sequence of the enumeration constants.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.Names``1\">\r\n            <summary>\r\n            Retrieves a sequence of the values of the constants in a specified enumeration.\r\n            </summary>\r\n            <typeparam name=\"E\">An enumeration type.</typeparam>\r\n            <returns>A sequence of the string representations of the enumeration constants.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.TryParse``1(System.String,``0@)\">\r\n            <summary>\r\n            Attempt to parse the given string as an enum.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n            <param name=\"enumString\">The string representation of the num.</param>\r\n            <param name=\"enumValue\">The enum corresponding to the string representation if\r\n            successful, or the default value otherwise.</param>\r\n            <returns>True if the parse succeeded, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Enum.Enums.TryParse``1(System.String,System.Boolean,``0@)\">\r\n            <summary>\r\n            Attempt to parse the given string as an enum.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n            <param name=\"enumString\">The string representation of the num.</param>\r\n            <param name=\"ignoreCase\">Indicates whether the parse is case-sensitive.</param>\r\n            <param name=\"enumValue\">The enum corresponding to the string representation if\r\n            successful, or the default value otherwise.</param>\r\n            <returns>True if the parse succeeded, false otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Enum.Enums.Cell`1\">\r\n            <summary>\r\n            Caches the enum values array.\r\n            </summary>\r\n            <typeparam name=\"E\">The type of the enum.</typeparam>\r\n        </member>\r\n        <member name=\"T:Sasa.Collections.Dictionaries\">\r\n            <summary>\r\n            Useful extensions to <see cref=\"T:System.Collections.Generic.IDictionary`2\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Dictionaries.FindOrDefault``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)\">\r\n            <summary>\r\n            Returns the value named by 'key', or inserts 'otherwise' into the dictionary and returns that.\r\n            </summary>\r\n            <typeparam name=\"K\">The type of the key.</typeparam>\r\n            <typeparam name=\"T\">The type of the value.</typeparam>\r\n            <param name=\"d\">The dictionary.</param>\r\n            <param name=\"key\">The dictionary key.</param>\r\n            <param name=\"otherwise\">The value to insert and return if the key is not in the dictionary.</param>\r\n            <returns>d[key] if d contains key, and if not, it inserts (key, otherwise), and returns otherwise.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Dictionaries.InsertIfDefault``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)\">\r\n            <summary>\r\n            Adds the value to the dictionary if it does not already exist.\r\n            </summary>\r\n            <typeparam name=\"K\">The type of the key.</typeparam>\r\n            <typeparam name=\"T\">The type of the value.</typeparam>\r\n            <param name=\"d\">The dictionary.</param>\r\n            <param name=\"key\">The dictionary key.</param>\r\n            <param name=\"value\">The value to insert.</param>\r\n            <returns>True if the item was inserted, false if the key already exists.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Collections.Dictionaries.FindOrOtherwise``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)\">\r\n            <summary>\r\n            Returns the value named by 'key', or if no such entry exists, returns 'otherwise'.\r\n            </summary>\r\n            <typeparam name=\"K\">The type of the key.</typeparam>\r\n            <typeparam name=\"T\">The type of the value.</typeparam>\r\n            <param name=\"d\">The dictionary.</param>\r\n            <param name=\"key\">The dictionary key.</param>\r\n            <param name=\"otherwise\">The value to insert and return if the key is not in the dictionary.</param>\r\n            <returns>Returns d[key] if it exists, or otherwise if it does not.</returns>\r\n        </member>\r\n        <member name=\"T:Sasa.Linq.Zips\">\r\n            <summary>\r\n            Zip functions merge streams of values together into tuples.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Zip two streams to a user-defined type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2},System.Func{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Zip three streams to a user-defined type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"third\">The third stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``5(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2},System.Collections.Generic.IEnumerable{``3},System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Zip four streams to a user-defined type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"third\">The third stream.</param>\r\n            <param name=\"fourth\">The fourth stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1})\">\r\n            <summary>\r\n            Pair the elements of two streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2})\">\r\n            <summary>\r\n            Zip the elements of three streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"third\">The third stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Collections.Generic.IEnumerable{``2},System.Collections.Generic.IEnumerable{``3})\">\r\n            <summary>\r\n            Zip the elements of four streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"third\">The third stream.</param>\r\n            <param name=\"fourth\">The fourth stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``3(System.Collections.Generic.IEnumerable{Sasa.Pair{``0,``1}},System.Collections.Generic.IEnumerable{``2})\">\r\n            <summary>\r\n            Zip a paired stream with a third stream.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``4(System.Collections.Generic.IEnumerable{Sasa.Pair{``0,``1}},System.Collections.Generic.IEnumerable{``2},System.Collections.Generic.IEnumerable{``3})\">\r\n            <summary>\r\n            Zip a paired stream with two more streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"third\">The third stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``4(System.Collections.Generic.IEnumerable{Sasa.Triple{``0,``1,``2}},System.Collections.Generic.IEnumerable{``3})\">\r\n            <summary>\r\n            Zip a three element stream with a fourth stream.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.Zip``4(System.Collections.Generic.IEnumerable{Sasa.Pair{``0,``1}},System.Collections.Generic.IEnumerable{Sasa.Pair{``2,``3}})\">\r\n            <summary>\r\n            Zip two paired streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <returns>A stream of tupled values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``5(System.Collections.Generic.IEnumerable{Sasa.Pair{``0,``1}},System.Collections.Generic.IEnumerable{Sasa.Pair{``2,``3}},System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Zip two paired streams.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``4(System.Collections.Generic.IEnumerable{Sasa.Pair{``0,``1}},System.Collections.Generic.IEnumerable{``2},System.Func{``0,``1,``2,``3})\">\r\n            <summary>\r\n            Zip a paired stream with a third stream.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n        <member name=\"M:Sasa.Linq.Zips.ZipWith``5(System.Collections.Generic.IEnumerable{Sasa.Triple{``0,``1,``2}},System.Collections.Generic.IEnumerable{``3},System.Func{``0,``1,``2,``3,``4})\">\r\n            <summary>\r\n            Zip a three element stream with a fourth stream.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the first stream.</typeparam>\r\n            <typeparam name=\"U\">The type of the second stream.</typeparam>\r\n            <typeparam name=\"V\">The type of the third stream.</typeparam>\r\n            <typeparam name=\"Q\">The type of the fourth stream.</typeparam>\r\n            <typeparam name=\"R\">The type of the returned stream.</typeparam>\r\n            <param name=\"first\">The first stream.</param>\r\n            <param name=\"second\">The second stream.</param>\r\n            <param name=\"selector\">The function mapping the given stream values into the return value.</param>\r\n            <returns>A stream of return values.</returns>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/CSS/Contents.css",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\n/*****************************************************************************\r\n *                                 Main                                      *\r\n *****************************************************************************/\r\n\r\n/* Hack for IE */\r\n* html body\r\n{\r\n\tpadding: 77px 0 15px 0; \r\n}\r\n\r\n/* Hack for IE */\r\n* html #Contents\r\n{\r\n\theight: 100%; \r\n\twidth: 100%; \r\n}\r\n\r\nbody\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 8pt;\r\n\tcolor: #000000;\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n\theight: 100%;\r\n\tmax-height:100%; \r\n\toverflow: hidden;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                 Links                                     *\r\n *****************************************************************************/\r\na\r\n{\r\n\tcolor: #0000ff;\r\n}\r\n\r\na:visited\r\n{\r\n\tcolor: #0000ff;\r\n}\r\n\r\na:hover\r\n{\r\n\tcolor: #3366ff;\r\n}\r\n\r\na#ContentsAnchor\r\n{\r\n\tposition: absolute;\r\n\tleft: 0px;\r\n\ttop: 0px;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  Divs                                     *\r\n *****************************************************************************/\r\n\r\ndiv#Header\r\n{\r\n\tposition:absolute; \r\n\ttop: 0; \r\n\tleft: 0; \r\n\twidth: 100%; \r\n\theight: 77px; \r\n\toverflow: auto; \r\n\tbackground-color: #d4dfff;\r\n\tborder-bottom: solid #c8cdde 1px;\r\n}\r\n\r\ndiv#HeaderToolbar\r\n{\r\n\tpadding-left: 15px;\r\n\tpadding-right: 15px;\r\n\tbackground-color: #d4dfff;\r\n\tpadding-top: 2px;\r\n}\r\n\r\ndiv#ProjectTitle\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 7.5pt;\r\n\tcolor: #003399;\r\n\tpadding-left: 15px;\r\n\tpadding-right: 15px;\r\n\tpadding-top: 5px;\r\n\tmargin-bottom: 3px;\r\n}\r\n\r\ndiv#PageTitle\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 9pt;\r\n\tfont-weight: bold;\r\n\tcolor: #003399;\r\n\tpadding-left: 15px;\r\n\tpadding-right: 15px;\r\n\tpadding-bottom: 5px;\t\r\n}\r\n\r\ndiv#HeaderShortcuts\r\n{\r\n\tpadding-left: 15px;\r\n\tmargin-bottom: 4px;\r\n\tmargin-top: 3px;\r\n}\r\n\r\ndiv#Contents\r\n{\r\n\tposition: fixed; \r\n\ttop: 78px;\r\n\tleft: 0;\r\n\tbottom: 18px; \r\n\t\r\n  * bottom: 15px; /* Hack for IE */\r\n\tright: 0; \r\n\toverflow:auto; \r\n\tmargin: 0px;\r\n\tpadding: 15px;\r\n\tpadding-top: 15px;\r\n}\r\n\r\ndiv#Footer\r\n{\r\n\tposition: absolute; \r\n\tbottom: 0px;\r\n\tleft: 0px;\r\n\twidth: 100%;\r\n\theight: 14px;\r\n\toverflow: hidden;\r\n\tborder-top: solid #bec7e4 1px;\r\n\tpadding-bottom: 3px;\r\n\tmargin-left: 0px;\r\n\tmargin-right: 0px;\r\n}\r\n\r\ndiv#ItemLocation\r\n{\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n\tmargin-top: 10px;\r\n}\r\n\r\np + div#ItemLocation\r\n{\r\n\tmargin-top: 0px;\r\n}\r\n\r\ndiv.SectionContainer\r\n{\r\n\tpadding-left: 17px;\r\n\tpadding-right: 17px;\r\n\r\n    _width: 100%; /* Hack for IE 6 and below */\r\n}\r\n\r\ndiv.SectionHeader\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 11pt;\r\n\tcolor: #003399;\r\n\tfont-weight: bold;\r\n\tmargin-top: 20px;\r\n\tmargin-bottom: 10px;\r\n}\r\n\r\ndiv.CommentHeader\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 10pt;\r\n\tcolor: #000000;\r\n\tfont-weight: bold;\r\n\tmargin-top: 10px;\r\n\tmargin-bottom: 2px;\r\n}\r\n\r\ndiv.CommentParameterName\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-style: italic;\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n\tmargin-bottom: 2px;\r\n\tmargin-top: 10px;\r\n}\r\n\r\ndiv + div.CommentHeader\r\n{\r\n\tmargin-top: 15px;\r\n}\r\n\r\ndiv.CommentHeader + div.CommentParameterName\r\n{\r\n\tmargin-top: 5px;\r\n}\r\n\r\np + div.CommentParameterName\r\n{\r\n\tmargin-top: 5px;\r\n}\r\n\r\ndiv.DarkLine\r\n{\r\n\tborder-top: solid #c8cdde 1px\r\n}\r\n\r\ndiv.LightLine\r\n{\r\n\tborder-top: solid #ffffff 1px\r\n}\r\n\r\ndiv.RemarksContainer\r\n{\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n\tmargin-bottom: 10px;\r\n}\r\n\r\ndiv.ParameterCommentContainer\r\n{\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n\tmargin-bottom: 10px;\r\n}\r\n\r\ndiv.TopLink\r\n{\r\n\tmargin-top: 10px;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                 Tables                                    *\r\n *****************************************************************************/\r\n\r\ntable.MembersTable\r\n{\r\n\twidth: 100%;\r\n}\r\n\r\ntable.MembersTable th\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 8pt;\r\n\tcolor: #000066;\r\n\tfont-weight: bold;\r\n\tbackground-color: #efeff7;\r\n\tborder-bottom: solid #c8cdde 1px;\r\n\tpadding-top: 5px;\r\n\tpadding-bottom: 5px;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 5px;\r\n\ttext-align: left;\r\n}\r\n\r\ntable.MembersTable td\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 8pt;\r\n\tcolor: #000000;\r\n\tbackground-color: #f7f7ff;\r\n\tborder-bottom: solid #d5d5d3 1px;\r\n\tpadding-top: 5px;\r\n\tpadding-bottom: 10px;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 10px;\r\n\ttext-align: left;\r\n}\r\n\r\ntable.MembersTable td.IconColumn\r\n{\r\n\tpadding-right: 5px;\r\n\twhite-space: nowrap;\r\n}\r\n\r\ntable.CodeTable\r\n{\r\n\twidth: 100%;\r\n\tmargin-bottom: 0px;\r\n\tfont-family: Courier New, Monospace;\r\n\tfont-size: 9pt;\r\n}\r\n\r\ntable.ExampleCodeTable\r\n{\r\n\twidth: 100%;\r\n\tmargin-bottom: 0px;\r\n\tfont-family: Courier New, Monospace;\r\n\tfont-size: 9pt;\r\n\t\r\n\tmargin-top: 12px;\r\n}\r\n\r\np + table.ExampleCodeTable\r\n{\r\n\tmargin-top: 0px;\r\n}\r\n\r\nth.CodeTable\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 8pt;\r\n\tcolor: #000066;\r\n\tfont-weight: bold;\r\n\tbackground-color: #efeff7;\r\n\tborder-bottom: solid #c8cdde 1px;\r\n\tpadding-top: 1px;\r\n\tpadding-bottom: 1px;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 5px;\r\n\ttext-align: left;\r\n}\r\n\r\ntd.CodeTable\r\n{\r\n\tcolor: #000066;\r\n\tbackground-color: #f7f7ff;\r\n\tborder-bottom: solid #d5d5d3 1px;\r\n\tpadding-top: 5px;\r\n\tpadding-bottom: 15px;\r\n\tpadding-left: 5px;\r\n\tpadding-right: 10px;\r\n\ttext-align: left;\r\n}\r\n\r\ntable.InsideCodeBlock\r\n{\r\n\tfont-size: 9pt;\r\n\t\r\n    margin: 0px;\r\n    padding: 0px;\r\n}\r\n\r\ntable.InsideCodeBlock tr\r\n{\r\n    margin: 0px;\r\n    padding: 0px;\r\n}\r\n\r\ntable.InsideCodeBlock td\r\n{\r\n    margin: 0px;\r\n    padding: 0px;\r\n    border: none;\r\n}\r\n\r\ntd.NoWrapTop\r\n{\r\n    white-space: nowrap;\r\n    vertical-align: top;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  Spans                                    *\r\n *****************************************************************************/\r\n\r\nspan#ExpandCollapseAllSpan\r\n{\r\n\tcolor: #0000ff;\r\n\tcursor: default;\r\n}\r\n\r\nspan.SectionHeader\r\n{\r\n\tmargin-left: 4px;\r\n}\r\n\r\nspan.Footer\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 7.5pt;\r\n\tmargin: 0px;\r\n\tmargin-left: 5px;\r\n\tpadding: 0px;\r\n\tpadding-bottom: 5px;\r\n}\r\n\r\nspan.PseudoLink\r\n{\r\n}\r\n\r\nspan.Code\r\n{\r\n\tfont-family: Courier New, Monospace;\r\n}\r\n\r\nspan.SeeAlsoInSectionHeader\r\n{\r\n\tfont-size: 9pt;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  Paragraphs                               *\r\n *****************************************************************************/\r\n\r\np\r\n{\r\n\ttext-align: justify;\r\n\tpadding-top: 0px;\r\n\tpadding-bottom: 0px;\r\n\tmargin: 0px;\r\n\tmargin-top: 12px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\na#ContentsAnchor + p\r\n{\r\n\tmargin-top: 0px;\r\n}\r\n\r\ntd p\r\n{\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\ndiv.ParameterCommentContainer p\r\n{\r\n\tmargin-top: 4px;\r\n\tmargin-bottom: 4px;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                    Other                                  *\r\n *****************************************************************************/\r\n\r\npre\r\n{\r\n\tfont-family: Courier New, Monospace;\r\n\tfont-size: 9pt;\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\nul\r\n{\r\n\tpadding: 0px;\r\n\tmargin: 0px;\r\n\tpadding-left: 30px;\r\n\tmargin-top: 12px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\nol\r\n{\r\n\tpadding: 0px;\r\n\tmargin: 0px;\r\n\tpadding-left: 30px;\r\n\tmargin-top: 12px;\r\n\tmargin-bottom: 12px;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  General classes                          *\r\n *****************************************************************************/\r\n\r\n.ArrowCursor\r\n{\r\n\tcursor: default;\r\n}\r\n\r\n.NoTopMargin\r\n{\r\n\tmargin-top: 0px;\r\n}\r\n\r\n.WithWrapping\r\n{\r\n\twhite-space: normal;\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/CSS/TableOfContents.css",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\n/*****************************************************************************\r\n *                                 Main                                      *\r\n *****************************************************************************/\r\n\r\nbody\r\n{\r\n\tfont-family: Verdana, Tahoma, Arial, Sans-Serif;\r\n\tfont-size: 8pt;\r\n\tcolor: #000000;\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  Divs                                     *\r\n *****************************************************************************/\r\n\r\n#Contents\r\n{\r\n\tpadding: 10px;\r\n\tpadding-top: 4px;\r\n}\r\n\r\n#Header\r\n{\r\n\twidth: 100%;\r\n\tbackground-color: #d4dfff;\r\n\tborder-bottom: solid #c8cdde 1px;\r\n\tpadding-bottom: 3px;\r\n\tpadding-left: 0px;\r\n\tpadding-top: 3px;\r\n  * padding-top: 2px; /* Hack for IE */\r\n}\r\n\r\n#HeaderTitle\r\n{\r\n\tdisplay: inline;\r\n\tfont-size: 7.5pt;\r\n\tcolor: #003399;\r\n\tmargin-top: 3px;\r\n\tmargin-bottom: 3px;\r\n\tmargin-left: 5px;\r\n}\r\n\r\n#LeftMenuSwitcherContainer\r\n{\r\n\tposition:absolute;\r\n\tright: 0px;\r\n\ttop: 0px;\r\n\t_background-color: #d4dfff; /* Hack for IE 6 and below */\r\n\t_border-bottom: solid #c8cdde 1px; /* Hack for IE 6 and below */\r\n}\r\n\r\n/*****************************************************************************\r\n *                                  IMGs                                     *\r\n *****************************************************************************/\r\n\r\n#LeftMenuSwitcherLink\r\n{\r\n\tcursor: pointer;\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/CSS/TreeView.css",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\nbody\r\n{\r\n    font-family: Verdana, Arial, Sans-Serif;\r\n    font-size: 8pt;\r\n}\r\n\r\n.TV_SubtreeContainer\r\n{\r\n    background-image: url('../GFX/TV_VerticalDots.gif');\r\n    background-repeat: repeat-y;\r\n\tmargin-left: 14.5pt;\r\n\tvisibility: hidden;\r\n\tdisplay: none;\r\n}\r\n\r\n.TV_NodeContainer\r\n{\r\n\twhite-space: nowrap;\r\n    padding-top: 3pt;\r\n}\r\n\r\n.TV_NodeLink\r\n{\r\n    text-decoration: none;\r\n    color: #000000;\r\n}\r\n\r\n.TV_NodeLink:visited\r\n{\r\n}\r\n\r\n.TV_NodeLink_Selected\r\n{\r\n\t/* not supported yet because navigating in the main contents\r\n       window doesn't change selected nodes appropriately\r\n    text-decoration: none;\r\n    color: #000000;\r\n    padding: 1pt;\r\n    padding-top: 0.5pt;\r\n    padding-bottom: 0.5pt;\r\n    \r\n    background-color: #e0dfe3;\r\n    border: solid #919191 1px;\r\n\t*/\r\n\r\n    text-decoration: none;\r\n    color: #000000;\r\n}\r\n\r\n.TV_NodeLink_Selected:visited\r\n{\r\n}\r\n\r\n/* as long as TV_NodeLink_Selected style is disabled this should be\r\n   disabled too\r\n:focus\r\n{\r\n\toutline-style: none;\r\n}\r\n\r\n:active\r\n{\r\n\toutline-style: none;\r\n\toutline: expression(hideFocus='true');\r\n}\r\n*/\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/0/0.html",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n\r\n<head>\r\n\r\n    <!--\r\n    /*\r\n     * Copyright 2007 - 2009 Marek Stój\r\n     * \r\n     * This file is part of ImmDoc .NET.\r\n     *\r\n     * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n     * it under the terms of the GNU General Public License as published by\r\n     * the Free Software Foundation; either version 2 of the License, or\r\n     * (at your option) any later version.\r\n     *\r\n     * ImmDoc .NET is distributed in the hope that it will be useful,\r\n     * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n     * GNU General Public License for more details.\r\n     *\r\n     * You should have received a copy of the GNU General Public License\r\n     * along with ImmDoc .NET; if not, write to the Free Software\r\n     * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n     */\r\n    -->\r\n\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n    \r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/TableOfContents.css\" />\r\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/TreeView.css\" />\r\n    \r\n    <script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n    <script type=\"text/javascript\" src=\"../../JS/ImmJSLib.js\"></script>\r\n    <script type=\"text/javascript\" src=\"../../JS/TreeView.js\"></script>\r\n    \r\n    <title>Table of contents</title>\r\n\r\n</head>\r\n\r\n<body>\r\n\r\n    <div id=\"Header\">\r\n        <div id=\"HeaderTitle\">Contents</div>\r\n        <div id=\"LeftMenuSwitcherContainer\"><img id=\"LeftMenuSwitcherLink\" src=\"../../GFX/LeftArrow.gif\" alt=\"Hide/Show Contents\" onclick=\"ToggleLeftFrame()\" /></div>        \r\n    </div>\r\n\r\n    <div id=\"Contents\">\r\n    \r\n        <div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Minus.gif\" alt=\"Expand/Collapse\" onclick=\"TV_Node_Clicked('1');\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/0/1.html\" id=\"TV_RootNode\" class=\"TV_NodeLink_Selected\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1');\">Assemblies</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1\" style=\"visibility: visible; display: block;\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/2.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_1');\">Sasa.Arrow Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/13.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_1_1');\">Sasa.Arrow Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_1_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_1_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/14.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_1_1_1_1');\">Arrow Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_1_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/29.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_1_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_1_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/15.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_1_1_2_2');\">Arrow&lt;T, R&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_1_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/16.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/3.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2');\">Sasa.Contracts Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/38.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1');\">System.Diagnostics.Contracts Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/39.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_1_1');\">Contract Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/48.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/40.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_2_2');\">Contract.AssertException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/79.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/41.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_3_3');\">Contract.AssumeException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/77.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/42.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_4_4');\">Contract.EnsuresException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/83.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/43.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_5_5');\">Contract.InvariantException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/81.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_6_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_6_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/44.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_6_6');\">Contract.RequiresException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_6_6\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/75.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_7_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_7_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/45.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_7_7');\">ContractInvariantMethodAttribute Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_7_7\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/87.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_8_8\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_8_8');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/46.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_8_8');\">PureAttribute Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_8_8\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/85.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_2_1_9_9\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_2_1_9_9');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/47.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_2_1_9_9');\">RuntimeContractsAttribute Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_2_1_9_9\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/89.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/4.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3');\">Sasa.Core Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/92.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_1');\">Sasa.IO Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/93.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_1_1_1');\">FsPath Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/106.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/94.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_1_2_2');\">PortableReader Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/139.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/95.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_1_3_3');\">PortableWriter Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/127.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/96.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_1_4_4');\">Streams Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/97.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/91.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2');\">Sasa Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/150.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_1_1');\">Future Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/175.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/151.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_2_2');\">Future&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/158.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/155.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_3_3');\">IFuture&lt;TFuture, T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/206.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/156.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_4_4');\">IPromise&lt;TFuture, TResolved, T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/202.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/152.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_5_5');\">Promise&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/170.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/153.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_6_6');\">PromiseResolvedException Class</a></span>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_3_2_7_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_3_2_7_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/154.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_3_2_7_7');\">Resolved&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_3_2_7_7\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/166.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/1.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4');\">Sasa Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/208.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1');\">Sasa Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/215.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_1_1');\">Atomics Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/413.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/216.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_2_2');\">CodeGen Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/401.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/217.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_3_3');\">Decimals Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/72.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/218.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_4_4');\">Doubles Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/290.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/219.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_5_5');\">Either&lt;TFirst, TSecond, TThird, TFourth&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/349.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_6_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_6_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/220.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_6_6');\">Either&lt;TFirst, TSecond, TThird&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_6_6\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/379.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_7_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_7_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/221.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_7_7');\">Either&lt;TFirst, TSecond&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_7_7\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/476.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_8_8\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_8_8');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/222.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_8_8');\">Empty Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_8_8\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/321.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_9_9\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_9_9');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/223.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_9_9');\">Endian Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_9_9\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/22.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_10_10\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_10_10');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/224.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_10_10');\">Events Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_10_10\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/293.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_11_11\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_11_11');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/225.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_11_11');\">ImmutableValue&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_11_11\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/60.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_12_12\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_12_12');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/226.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_12_12');\">Integers Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_12_12\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/63.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/248.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_13_13');\">IOptional&lt;T&gt; Interface</a></span>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_14_14\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_14_14');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/249.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_14_14');\">IRef&lt;T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_14_14\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/142.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_15_15\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_15_15');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/250.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_15_15');\">IResolvable&lt;T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_15_15\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/135.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_16_16\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_16_16');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/251.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_16_16');\">IValue&lt;T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_16_16\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/137.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_17_17\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_17_17');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/252.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_17_17');\">IVolatile&lt;T&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_17_17\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/139.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_18_18\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_18_18');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/227.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_18_18');\">Lazy Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_18_18\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/263.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_19_19\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_19_19');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/228.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_19_19');\">Lazy&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_19_19\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/253.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_20_20\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_20_20');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/229.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_20_20');\">MetaExtensions Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_20_20\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/347.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_21_21\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_21_21');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/230.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_21_21');\">NonNull&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_21_21\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/327.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_22_22\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_22_22');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/231.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_22_22');\">Null Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_22_22\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/345.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_23_23\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_23_23');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/232.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_23_23');\">Option Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_23_23\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/113.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_24_24\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_24_24');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/233.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_24_24');\">Option&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_24_24\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/92.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_25_25\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_25_25');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/234.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_25_25');\">Pair&lt;T0, T1&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_25_25\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/457.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_26_26\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_26_26');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/235.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_26_26');\">Quad&lt;T0, T1, T2, T3&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_26_26\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/75.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_27_27\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_27_27');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/236.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_27_27');\">Ref&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_27_27\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/57.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_28_28\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_28_28');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/237.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_28_28');\">Singles Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_28_28\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/376.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_29_29\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_29_29');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/238.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_29_29');\">Triple&lt;T0, T1, T2&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_29_29\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/266.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_30_30\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_30_30');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/239.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_30_30');\">Tuple Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_30_30\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/424.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_31_31\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_31_31');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/240.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_31_31');\">TypeConstraint&lt;T, TBase&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_31_31\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/286.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_32_32\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_32_32');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/241.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_32_32');\">TypeConstraint&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_32_32\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/282.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_33_33\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_33_33');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/242.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_33_33');\">Types Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_33_33\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/403.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_34_34\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_34_34');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/243.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_34_34');\">Union128 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_34_34\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/15.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_35_35\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_35_35');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/244.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_35_35');\">Union16 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_35_35\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/493.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_36_36\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_36_36');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/245.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_36_36');\">Union32 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_36_36\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/499.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_37_37\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_37_37');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/246.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_37_37');\">Union64 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_37_37\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/7.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_1_38_38\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_1_38_38');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/247.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_1_38_38');\">Weak&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_1_38_38\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/432.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/209.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2');\">Sasa.Collections Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/144.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_1_1');\">Arrays Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/174.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/145.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_2_2');\">Dictionaries Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/247.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/146.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_3_3');\">Env&lt;K, V&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/240.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/152.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_4_4');\">ISeq&lt;TCollection, TItem&gt; Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/251.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/147.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_5_5');\">PQueue Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/238.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_6_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_6_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/148.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_6_6');\">PQueue&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_6_6\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/218.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_7_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_7_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/149.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_7_7');\">Seq&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_7_7\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/184.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_8_8\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_8_8');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/150.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_8_8');\">Set Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_8_8\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/172.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_2_9_9\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_2_9_9');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/151.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_2_9_9');\">Set&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_2_9_9\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/153.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/213.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_3');\">Sasa.String Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_3\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_3_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_3_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/258.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_3_1_1');\">Strings Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_3_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/260.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_3_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_3_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/259.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_3_2_2');\">Strings.Token Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_3_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/278.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/214.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_4');\">Sasa.Web Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_4_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_4_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/282.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_4_1_1');\">Url64 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_4_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/283.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/212.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_5');\">Sasa.Linq Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_5\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_5_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_5_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/286.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_5_1_1');\">Enumerables Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_5_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/288.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_5_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_5_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/287.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_5_2_2');\">Zips Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_5_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/304.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/211.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_6');\">Sasa.Func Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_6\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_6_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_6_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/322.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_6_1_1');\">Func Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_6_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/323.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/210.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_7');\">Sasa.Enum Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_7\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_4_7_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_4_7_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/351.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_4_7_1_1');\">Enums Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_4_7_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/352.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/5.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5');\">Sasa.Dynamics Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/362.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1');\">Sasa.Dynamics Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/363.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_1_1');\">DynamicType Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/382.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/367.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_2_2');\">IReflected Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/409.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/368.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_3_3');\">IReflector Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/387.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/364.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_4_4');\">Methods&lt;K&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/372.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/365.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_5_5');\">Type&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/369.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_5_1_6_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_5_1_6_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/366.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_5_1_6_6');\">Types&lt;K&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_5_1_6_6\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/378.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/6.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6');\">Sasa.Linq Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/411.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1');\">Sasa.Linq Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/412.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1_1_1');\">ErrorVisitor&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/14.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/413.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1_2_2');\">ExpressionVisitor&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/417.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/414.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1_3_3');\">IdentityVisitor Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/466.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/415.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1_4_4');\">Queryable&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/62.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_6_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_6_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/2/416.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_6_1_5_5');\">QueryProvider Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_6_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/68.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/7.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7');\">Sasa.Mime Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/73.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1');\">Sasa.Mime Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/74.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_1_1');\">FileExtensions Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/86.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/75.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_2_2');\">FileExtensions.Application Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/88.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/76.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_3_3');\">FileExtensions.Image Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/97.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/77.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_4_4');\">FileExtensions.Message Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/115.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/78.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_5_5');\">FileExtensions.Multipart Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/111.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_6_6\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_6_6');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/79.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_6_6');\">FileExtensions.Text Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_6_6\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/105.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_7_7\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_7_7');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/80.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_7_7');\">MediaTypes Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_7_7\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/117.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_8_8\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_8_8');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/81.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_8_8');\">MediaTypes.Application Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_8_8\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/121.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_9_9\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_9_9');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/82.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_9_9');\">MediaTypes.Image Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_9_9\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/131.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_10_10\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_10_10');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/83.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_10_10');\">MediaTypes.Message Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_10_10\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/148.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_11_11\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_11_11');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/84.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_11_11');\">MediaTypes.Multipart Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_11_11\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/144.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_7_1_12_12\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_7_1_12_12');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/85.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_7_1_12_12');\">MediaTypes.Text Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_7_1_12_12\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/138.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/8.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8');\">Sasa.Net Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/151.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_1');\">Sasa.Net.Mail Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/154.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_1_1_1');\">Message Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/164.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/155.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_1_2_2');\">Mime Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/183.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_1_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_1_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/156.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_1_3_3');\">QuotedPrintable Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_1_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/157.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/152.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_2');\">Sasa.Net.Pop3 Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_2_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_2_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/192.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_2_1_1');\">Pop3Client Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_2_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/206.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_2_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_2_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/193.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_2_2_2');\">Pop3Header Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_2_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/195.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_2_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_2_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/194.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_2_3_3');\">Pop3Session Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_2_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/213.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/153.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_3');\">Sasa.Rfc Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_3\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_3_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_3_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/219.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_3_1_1');\">Rfc822 Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_3_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/220.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/150.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_4');\">Sasa.Net Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_4\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_4_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_4_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/223.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_4_1_1');\">InvalidResponseException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_4_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/231.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_8_4_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_8_4_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/224.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_8_4_2_2');\">Texty Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_8_4_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/225.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_9\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_9');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/9.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_9');\">Sasa.Operators Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_9\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_9_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_9_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/233.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_9_1');\">Sasa.Operators Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_9_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_9_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_9_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/234.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_9_1_1_1');\">Arithmetic&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_9_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/236.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_9_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_9_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/235.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_9_1_2_2');\">Logical&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_9_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/243.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/10.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10');\">Sasa.Parsing Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/249.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1');\">Sasa.Parsing.Pratt Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/250.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1_1_1');\">Grammar&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/264.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/251.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1_2_2');\">PrattParser&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/289.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/254.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1_3_3');\">Scanner Delegate</a></span>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_1_4_4\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_1_4_4');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/252.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1_4_4');\">Symbol&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_1_4_4\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/293.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_1_5_5\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_1_5_5');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/253.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_1_5_5');\">Token&lt;T&gt; Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_1_5_5\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/255.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/248.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_2');\">Sasa.Parsing Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_10_2_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_10_2_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/286.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_10_2_1_1');\">ParseException Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_10_2_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/303.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/11.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11');\">Sasa.Serialization Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/306.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_1');\">Sasa.Serialization.Unsafe Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/308.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_1_1_1');\">IUnsafeSerializable Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/310.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_1_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_1_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/309.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_1_2_2');\">IUnsafeSerializer Interface</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_1_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/312.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/307.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_2');\">Sasa.Serialization.Unsafe.Binary Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_2\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_2_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_2_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/330.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_2_1_1');\">BinaryDeserializer Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_2_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/352.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_2_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_2_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/331.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_2_2_2');\">BinarySerializer Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_2_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/332.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/305.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_3');\">Sasa.Serialization Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_3\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_3_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_3_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/372.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_3_1_1');\">DeepCopying Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_3_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/394.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_3_2_2\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_3_2_2');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/373.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_3_2_2');\">DeserializationContext Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_3_2_2\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/377.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_11_3_3_3\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_11_3_3_3');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/374.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_3_3_3');\">SerializationContext Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_11_3_3_3\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/385.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/375.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_11_3_4_4');\">SerializationSlot&lt;TKey, TValue&gt; Class</a></span>\n</div>\n</div>\n</div>\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_12\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_12');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/1/12.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_12');\">Sasa.Statistics Assembly</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_12\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_12_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_12_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/396.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_12_1');\">Sasa.Statistics.Linq Namespace</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_12_1\">\n<div class=\"TV_NodeContainer\">\n<img id=\"TV_NodeExpansionIcon_1_12_1_1_1\" class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Plus.gif\" onclick=\"TV_Node_Clicked('1_12_1_1_1');\" alt=\"Expand/Collapse\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/397.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, '1_12_1_1_1');\">Statistics Class</a></span>\n</div>\n<div class=\"TV_SubtreeContainer\" id=\"TV_Subtree_1_12_1_1_1\">\n<div class=\"TV_NodeContainer\">\n<img class=\"TV_NodeExpansionIcon\" src=\"../../GFX/TV_Null.gif\" alt=\"\" />\n<span class=\"TV_NodeLabel\"><a href=\"../../Contents/3/398.html\" class=\"TV_NodeLink\" target=\"ContentsFrame\" onclick=\"TV_NodeLink_Clicked(this, null);\">Members</a></span>\n</div>\n</div>\n</div>\n</div>\n</div>\n\r\n    \r\n    </div>\r\n    \r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/0/1.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Assemblies</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Assemblies</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Assemblies</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>This is the list of all assemblies in your project.</p>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nAssemblies\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/1.html\">Sasa</a></td>\r\n<td>\r\n      Statically-typed extensions to the base class libraries for common abstractions and operations.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/2.html\">Sasa.Arrow</a></td>\r\n<td>\r\n      Provides a LINQ query interface to computations.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/3.html\">Sasa.Contracts</a></td>\r\n<td>\r\n      An API matching Microsoft's Code Contracts.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/4.html\">Sasa.Core</a></td>\r\n<td>\r\n      Extensions for concurrency, I/O, and more.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a></td>\r\n<td>\r\n      Statically typed, safe reflection abstractions.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/6.html\">Sasa.Linq</a></td>\r\n<td>\r\n      Utilities for processing LINQ expression trees.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/7.html\">Sasa.Mime</a></td>\r\n<td>\r\n      Mime types and file extensions, and functions to map between them.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/8.html\">Sasa.Net</a></td>\r\n<td>\r\n      Implementations of a few internet protocols and standards.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/9.html\">Sasa.Operators</a></td>\r\n<td>\r\n      Generic arithmetic and logical operators for primitive CIL types. Requires Full Trust.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/10.html\">Sasa.Parsing</a></td>\r\n<td>\r\n      Abstractions for statically typed parsing.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/11.html\">Sasa.Serialization</a></td>\r\n<td>\r\n      Abstractions for serialization.\r\n    </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Assembly.gif\" alt=\"Assembly\" /></td>\r\n<td><a href=\"../../Contents/1/12.html\">Sasa.Statistics</a></td>\r\n<td>\r\n      Statistical calculations.\r\n    </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/1.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Statically-typed extensions to the base class libraries for common abstractions and operations.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/208.html\">Sasa</a></td>\r\n<td>\r\n        Extensions to numbers, thread-safe event handling, tuples, endian encoding, and more.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/209.html\">Sasa.Collections</a></td>\r\n<td>\r\n        Some purely functional collections, and extension methods for System.Collections.Generic.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/210.html\">Sasa.Enum</a></td>\r\n<td>\r\n        Statically typed versions of System.Enum static methods.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/211.html\">Sasa.Func</a></td>\r\n<td>\r\n        Operations on delegates, including coercing between compatible delegate types, currying, fixed points, and more.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/212.html\">Sasa.Linq</a></td>\r\n<td>\r\n        Extensions to System.Linq and IEnumerable, including formatting, append/prepend, .\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/213.html\">Sasa.String</a></td>\r\n<td>\r\n        Extension methods on strings, including wrapping, slicing, splitting, tokenizing, and more.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/214.html\">Sasa.Web</a></td>\r\n<td>\r\n        Encoding bytes to url-safe strings, without hex-encoded escape strings.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/10.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Parsing Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Parsing Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Abstractions for statically typed parsing.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/248.html\">Sasa.Parsing</a></td>\r\n<td>\r\n        Shared abstractions for all parsers.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a></td>\r\n<td>\r\n        An extensible, statically typed Pratt-parser.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/100.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnWrite Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnWrite Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async write on the given stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/104.html\">Streams.SpawnWrite (Stream, byte[])</a></td>\r\n<td>Perform an async write on the given stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/105.html\">Streams.SpawnWrite (Stream, byte[], int, int)</a></td>\r\n<td>Perform an async write on the given stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/101.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.ToArray Method (Stream)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.ToArray Method (Stream)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead the full stream into a byte array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static byte[] ToArray (\n        Stream <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to read.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe contents of the stream.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/102.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnRead Method (Stream, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnRead Method (Stream, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async read on the given stream and return a promise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;ArraySegment&lt;byte[]&gt;&gt; SpawnRead (\n        Stream <i>stream</i>,\n        int <i>read</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">stream</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to read.\r\n</div>\r\n<div class=\"CommentParameterName\">read</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of bytes to read.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise for the bytes.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/103.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnRead Method (Stream, byte[], int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnRead Method (Stream, byte[], int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async read on the given stream into the given buffer.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;ArraySegment&lt;byte[]&gt;&gt; SpawnRead (\n        Stream <i>stream</i>,\n        byte[] <i>buffer</i>,\n        int <i>offset</i>,\n        int <i>read</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">stream</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to read.\r\n</div>\r\n<div class=\"CommentParameterName\">buffer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe buffer to read into.\r\n</div>\r\n<div class=\"CommentParameterName\">offset</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe offset into the buffer at which to begin writing.\r\n</div>\r\n<div class=\"CommentParameterName\">read</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of bytes to read.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise for the bytes.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/104.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnWrite Method (Stream, byte[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnWrite Method (Stream, byte[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async write on the given stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; SpawnWrite (\n        Stream <i>stream</i>,\n        byte[] <i>buffer</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">stream</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to write to.\r\n</div>\r\n<div class=\"CommentParameterName\">buffer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe buffer to read from.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise for the completion of the write operation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/105.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnWrite Method (Stream, byte[], int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnWrite Method (Stream, byte[], int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async write on the given stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; SpawnWrite (\n        Stream <i>stream</i>,\n        byte[] <i>buffer</i>,\n        int <i>offset</i>,\n        int <i>read</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">stream</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to write to.\r\n</div>\r\n<div class=\"CommentParameterName\">buffer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe buffer to read from.\r\n</div>\r\n<div class=\"CommentParameterName\">offset</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe offset into the buffer to begin reading.\r\n</div>\r\n<div class=\"CommentParameterName\">read</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of bytes to write.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise for the completion of the write operation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis function must be used very carefully, because there is no guarantee that\r\n            previous calls to this function complete before later ones. Therefore futures may\r\n            resolve out of order to what one might expect.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/106.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA structured file system path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/107.html\">FsPath</a></td>\r\n<td>Overloaded. Construct a structured file system path.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/108.html\">Combine</a></td>\r\n<td>Construct a combined path from two paths.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/109.html\">CompareTo</a></td>\r\n<td>Order two paths.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/110.html\">Equals</a></td>\r\n<td>Overloaded. Compare two paths for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/111.html\">GetEnumerator</a></td>\r\n<td>Returns an enumerator over the file path components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/112.html\">GetHashCode</a></td>\r\n<td>Compute hash code of path.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/113.html\">operator /</a></td>\r\n<td>Overloaded. Combine the given path and string component.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/114.html\">operator implicit</a></td>\r\n<td>Implicitly convert a string to a structured path.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/115.html\">Root</a></td>\r\n<td>Declare the root path.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/116.html\">ToString</a></td>\r\n<td>Return a string representation of the path.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/107.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a structured file system path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/117.html\">FsPath (string)</a></td>\r\n<td>Construct a structured file system path.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/118.html\">FsPath (IEnumerable&lt;string&gt;)</a></td>\r\n<td>Construct a structured path from a series of path components.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/108.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.Combine Method (FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.Combine Method (FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a combined path from two paths.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public FsPath Combine (\n        FsPath <i>file</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">file</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe path to combine with this one.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe combined path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/109.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.CompareTo Method (FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.CompareTo Method (FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrder two paths.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int CompareTo (\n        FsPath <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nOther path to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if equal, less than zero if this path\r\n            is less than <span class=\"Code\">other</span>, else returns greater than\r\n            zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/11.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Serialization Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Serialization Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Abstractions for serialization.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/305.html\">Sasa.Serialization</a></td>\r\n<td>\r\n        Shared code for all serializers.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a></td>\r\n<td>\r\n        Very efficient, but unsafe serialization.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a></td>\r\n<td>\r\n        Very efficient, but unsafe binary serializaters.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/110.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two paths for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/119.html\">FsPath.Equals (FsPath)</a></td>\r\n<td>Compare two paths for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/120.html\">FsPath.Equals (object)</a></td>\r\n<td>Compare two paths for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/111.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an enumerator over the file path components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;string&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumerator that can be used to iterate through the collection.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/112.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute hash code of path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHash code for path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/113.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string component.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/121.html\">FsPath.operator / (FsPath, string)</a></td>\r\n<td>Combine the given path and string component.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/122.html\">FsPath.operator / (string, FsPath)</a></td>\r\n<td>Combine the given path and string component.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/123.html\">FsPath.operator / (FsPath, IEnumerable&lt;string&gt;)</a></td>\r\n<td>Combine the given path and string components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/124.html\">FsPath.operator / (IEnumerable&lt;string&gt;, FsPath)</a></td>\r\n<td>Combine the given path and string components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/125.html\">FsPath.operator / (string[], FsPath)</a></td>\r\n<td>Combine the given path and string components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/126.html\">FsPath.operator / (FsPath, FsPath)</a></td>\r\n<td>Combine the given path and string components.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/114.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator implicit Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator implicit Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a string to a structured path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator FsPath (\n        string <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe path contained in an unstructured string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/115.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.Root Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.Root Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDeclare the root path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath Root (\n        string <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe root path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA path encapsulating the given root.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/116.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of the path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/117.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a structured file system path.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public FsPath (\n        string <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe root path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/118.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath Constructor (IEnumerable&lt;string&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath Constructor (IEnumerable&lt;string&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a structured path from a series of path components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public FsPath (\n        IEnumerable&lt;string&gt; <i>parts</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">parts</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPath fragments making up the full path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/119.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.Equals Method (FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.Equals Method (FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two paths for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        FsPath <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe path to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the paths are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/12.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Statistics Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Statistics Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Statistical calculations.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a></td>\r\n<td>\r\n        Statistical functions over enumerable sequences.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/120.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two paths for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe path to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the paths are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/121.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (FsPath, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (FsPath, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string component.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        FsPath <i>path</i>,\n        string <i>part</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA structured path.\r\n</div>\r\n<div class=\"CommentParameterName\">part</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn unstructured path string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/122.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (string, FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (string, FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string component.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        string <i>part</i>,\n        FsPath <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">part</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn unstructured path string.\r\n</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA structured path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/123.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (FsPath, IEnumerable&lt;string&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (FsPath, IEnumerable&lt;string&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        FsPath <i>path</i>,\n        IEnumerable&lt;string&gt; <i>parts</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe structured path.\r\n</div>\r\n<div class=\"CommentParameterName\">parts</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe components of a path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/124.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (IEnumerable&lt;string&gt;, FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (IEnumerable&lt;string&gt;, FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        IEnumerable&lt;string&gt; <i>parts</i>,\n        FsPath <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">parts</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe components of a path.\r\n</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe structured path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/125.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (string[], FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (string[], FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        string[] <i>parts</i>,\n        FsPath <i>path</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">parts</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe components of a path.\r\n</div>\r\n<div class=\"CommentParameterName\">path</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe structured path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/126.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath.operator / Method (FsPath, FsPath)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath.operator / Method (FsPath, FsPath)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the given path and string components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/93.html\">FsPath</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static FsPath operator / (\n        FsPath <i>path1</i>,\n        FsPath <i>path2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">path1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first structured path.\r\n</div>\r\n<div class=\"CommentParameterName\">path2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second structured path.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe combined structured path.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/127.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA BinaryWriter that encodes values from host to big-endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/128.html\">PortableWriter</a></td>\r\n<td>Overloaded. Construct a PortableWriter given the output stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/129.html\">Write</a></td>\r\n<td>Overloaded. Write a 16-bit signed value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/128.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableWriter given the output stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/130.html\">PortableWriter (Stream)</a></td>\r\n<td>Construct a PortableWriter given the output stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/131.html\">PortableWriter (Stream, Encoding)</a></td>\r\n<td>Construct a PortableWriter given an output stream and an encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/129.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 16-bit signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/132.html\">PortableWriter.Write (short)</a></td>\r\n<td>Write a 16-bit signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/133.html\">PortableWriter.Write (ushort)</a></td>\r\n<td>Write a 16-bit unsigned value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/134.html\">PortableWriter.Write (int)</a></td>\r\n<td>Write a 32-bit signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/135.html\">PortableWriter.Write (uint)</a></td>\r\n<td>Write a 32-bit unsigned value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/136.html\">PortableWriter.Write (long)</a></td>\r\n<td>Write a 64-bit signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/137.html\">PortableWriter.Write (ulong)</a></td>\r\n<td>Write a 64-bit unsigned value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/138.html\">PortableWriter.Write (decimal)</a></td>\r\n<td>Write a 128-bit decimal value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/13.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Arrow Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Arrow Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Provides a LINQ query interface to computations.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/14.html\">Arrow</a></td>\r\n<td>Utility functions on arrows.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a></td>\r\n<td>Represents a computation from <span class=\"Code\">T</span> to <span class=\"Code\">U</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/130.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter Constructor (Stream)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter Constructor (Stream)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableWriter given the output stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PortableWriter (\n        Stream <i>output</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output stream to write to.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/131.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter Constructor (Stream, Encoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter Constructor (Stream, Encoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableWriter given an output stream and an encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PortableWriter (\n        Stream <i>output</i>,\n        Encoding <i>encoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output stream to write to.\r\n</div>\r\n<div class=\"CommentParameterName\">encoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe character encoding to use.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/132.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 16-bit signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        short <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA 16-bit signed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/133.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 16-bit unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        ushort <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA 16-bit unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/134.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 32-bit signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        int <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/135.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 32-bit unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        uint <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nWrite a 32-bit unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/136.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 64-bit signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        long <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe 64-bit signed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/137.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 64-bit unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        ulong <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA 64-bit unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/138.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter.Write Method (decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter.Write Method (decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrite a 128-bit decimal value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/95.html\">PortableWriter</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override void Write (\n        decimal <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decimal to write.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/139.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA BinaryReader that decodes values from big-endian to host encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/140.html\">PortableReader</a></td>\r\n<td>Overloaded. Construct a PortableReader that reads from the given stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/141.html\">ReadDecimal</a></td>\r\n<td>Read a 128-bit decimal value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/142.html\">ReadInt16</a></td>\r\n<td>Read a signed 16-bit value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/143.html\">ReadInt32</a></td>\r\n<td>Read a signed 32-bit value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/144.html\">ReadInt64</a></td>\r\n<td>Read a signed 64-bit value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/145.html\">ReadUInt16</a></td>\r\n<td>Read an unsigned 16-bit value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/146.html\">ReadUInt32</a></td>\r\n<td>Read an unsigned 32-bit value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/147.html\">ReadUInt64</a></td>\r\n<td>Read an unsigned 64-bit value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/14.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functions on arrows.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Arrow </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/29.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/140.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableReader that reads from the given stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/148.html\">PortableReader (Stream)</a></td>\r\n<td>Construct a PortableReader that reads from the given stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/149.html\">PortableReader (Stream, Encoding)</a></td>\r\n<td>Construct a PortableReader that reads from the given stream with the given encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/141.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadDecimal Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadDecimal Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead a 128-bit decimal value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override decimal ReadDecimal ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA 128-bit decimal value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/142.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadInt16 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadInt16 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead a signed 16-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override short ReadInt16 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA signed 16-bit value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/143.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadInt32 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadInt32 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead a signed 32-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int ReadInt32 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA signed 32-bit value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/144.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadInt64 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadInt64 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead a signed 64-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override long ReadInt64 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA signed 64-bit value\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/145.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadUInt16 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadUInt16 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead an unsigned 16-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override ushort ReadUInt16 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn unsigned 16-bit value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/146.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadUInt32 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadUInt32 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead an unsigned 32-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override uint ReadUInt32 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn unsigned 32-bit value\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/147.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader.ReadUInt64 Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader.ReadUInt64 Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead an unsigned 64-bit value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override ulong ReadUInt64 ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn unsigned 64-bit value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/148.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader Constructor (Stream)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader Constructor (Stream)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableReader that reads from the given stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PortableReader (\n        Stream <i>input</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to read from.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/149.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader Constructor (Stream, Encoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader Constructor (Stream, Encoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a PortableReader that reads from the given stream with the given encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/94.html\">PortableReader</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PortableReader (\n        Stream <i>input</i>,\n        Encoding <i>encoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe stream to read from.\r\n</div>\r\n<div class=\"CommentParameterName\">encoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encoding to use when reading.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/15.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a computation from <span class=\"Code\">T</span> to <span class=\"Code\">U</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Arrow&lt;T, R&gt; :&nbsp;</td>\n<td>\nValueType,<br />IValue&lt;Func&lt;T, R&gt;&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the input.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the output.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/16.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/150.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFunctions on Future values.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Future </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/175.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/151.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA future value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Future&lt;T&gt; :&nbsp;</td>\n<td>\nIFuture&lt;Resolved&lt;T&gt;, T&gt;,<br />\nIResolvable&lt;T&gt;,<br />\nIVolatile&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the future value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/158.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/152.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUsed to resolve or fail a future.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Promise&lt;T&gt; :&nbsp;</td>\n<td>\nIPromise&lt;Future&lt;T&gt;, Resolved&lt;T&gt;, T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the promised future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/170.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/153.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PromiseResolvedException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PromiseResolvedException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown when attempting to resolve a promise that has already been resolved.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class PromiseResolvedException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>There are no members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/154.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Resolved&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Resolved&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA resolved future.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Resolved&lt;T&gt; :&nbsp;</td>\n<td>\nFuture&lt;T&gt;,<br />IOptional&lt;T&gt;,<br />\nIResolvable&lt;T&gt;,<br />\nIValue&lt;T&gt;,<br />\nIVolatile&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the future value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/166.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/155.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IFuture&lt;TFuture, T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IFuture&lt;TFuture, T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA future value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IFuture&lt;TFuture, T&gt; :&nbsp;</td>\n<td>\nIResolvable&lt;T&gt;\n</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where TFuture</td>\n<td>&nbsp;: IFuture&lt;TFuture, T&gt;</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFuture</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the future.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the future's value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/206.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/156.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IPromise&lt;TFuture, TResolved, T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IPromise&lt;TFuture, TResolved, T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContract for promises, which are used to resolve or fail a future.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IPromise&lt;TFuture, TResolved, T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where TFuture</td>\n<td>&nbsp;: IFuture&lt;TResolved, T&gt;</td>\n</td>\n</tr>\n<tr>\n<td class=\"NoWrapTop\">where TResolved</td>\n<td>&nbsp;: IFuture&lt;TResolved, T&gt;</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFuture</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of unresolved futures.\r\n</div>\r\n<div class=\"CommentParameterName\">TResolved</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of resolved futures.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the future's value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/202.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/157.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PromiseResolvedException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PromiseResolvedException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown when attempting to resolve a promise that has already been resolved.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/153.html\">PromiseResolvedException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/158.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA future value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/159.html\">Future</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/160.html\">ContinueWith</a></td>\r\n<td>Register a continuation to be invoked on future resolution.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/161.html\">operator implicit</a></td>\r\n<td>Implicitly convert an exception into a failed future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/162.html\">TryGetValue</a></td>\r\n<td>Attempt to extract the value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/163.html\">Wait</a></td>\r\n<td>Explicitly wait on the given future.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/164.html\">HasError</a></td>\r\n<td>Returns trye if this future has resolved to an error.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/165.html\">HasValue</a></td>\r\n<td>Returns true if this future has resolved to a value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/159.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Future ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/16.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a computation from <span class=\"Code\">T</span> to <span class=\"Code\">U</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/17.html\">Concat</a></td>\r\n<td>Collects the results of a series of computations.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/18.html\">Do</a></td>\r\n<td>Return a computation that executes in an exception handler.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/19.html\">Fanout&lt;U, V&gt;</a></td>\r\n<td>Combines two computations into a computation that accepts a pair that is split,\r\n            fed to each computation separately, then combined.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/20.html\">First&lt;U&gt;</a></td>\r\n<td>Given a computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, construct\r\n            a computation that transforms the first argument and passes the second argument with no change.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/21.html\">If</a></td>\r\n<td>Runs one computation or the other based on a condition.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/22.html\">operator implicit</a></td>\r\n<td>Implicitly convert delegates to arrows.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/23.html\">Second&lt;U&gt;</a></td>\r\n<td>Given a computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, construct\r\n            a computation that transforms the second argument and passes the first argument with no change.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/24.html\">Select&lt;U&gt;</a></td>\r\n<td>Transforms the computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, to\r\n            <span class=\"Code\">T</span> to <span class=\"Code\">U</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/25.html\">SelectMany&lt;U&gt;</a></td>\r\n<td>Project result <span class=\"Code\">R</span> into a new computation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/26.html\">SelectMany&lt;U, V&gt;</a></td>\r\n<td>Project result <span class=\"Code\">R</span> into a new computation of type <span class=\"Code\">U</span>,\r\n            and collect and project into a final computation of type <span class=\"Code\">V</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/27.html\">SplitCombine&lt;U&gt;</a></td>\r\n<td>Merges two computation results.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/28.html\">Value</a></td>\r\n<td>The encapsulated computation.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/160.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.ContinueWith Method (Action&lt;Resolved&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.ContinueWith Method (Action&lt;Resolved&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRegister a continuation to be invoked on future resolution.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void ContinueWith (\n        Action&lt;Resolved&lt;T&gt;&gt; <i>continuation</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">continuation</div>\r\n<div class=\"ParameterCommentContainer\">\r\nContinuation invoked when the future resolves to a value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/161.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.operator implicit Method (Exception)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.operator implicit Method (Exception)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert an exception into a failed future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Future&lt;T&gt; (\n        Exception <i>reason</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reason</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason the future failed.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA failed future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/162.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.TryGetValue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.TryGetValue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempt to extract the value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool TryGetValue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in this future, or default(T) if it's not yet resolved.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the future has resolved.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis method is thread-safe. If the future has resolved to an exception, this method will return false.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/163.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.Wait Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.Wait Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExplicitly wait on the given future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Resolved&lt;T&gt; Wait ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis is generally not recommended as it inhibits a program's scalability.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/164.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.HasError Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.HasError Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns trye if this future has resolved to an error.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool HasError { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/165.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future&lt;T&gt;.HasValue Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future&lt;T&gt;.HasValue Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if this future has resolved to a value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool HasValue { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/166.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Resolved&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Resolved&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA resolved future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/154.html\">Resolved&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/167.html\">Resolved</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/168.html\">operator implicit</a></td>\r\n<td>Implicitly convert an exception into a failed future.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/169.html\">Value</a></td>\r\n<td>The value computed by this future. If the future failed,\r\n            accessing this property will throw the exception that \r\n            caused the failure.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/167.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Resolved&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Resolved&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/154.html\">Resolved&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Resolved ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/168.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Resolved&lt;T&gt;.operator implicit Method (Exception)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Resolved&lt;T&gt;.operator implicit Method (Exception)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert an exception into a failed future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/154.html\">Resolved&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Resolved&lt;T&gt; (\n        Exception <i>reason</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reason</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason the future failed.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA failed future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/169.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Resolved&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Resolved&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe value computed by this future. If the future failed,\r\n            accessing this property will throw the exception that \r\n            caused the failure.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/154.html\">Resolved&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">Exception</span></td>\r\n<td>\r\n            If the future fails, then the exception thrown is the reason for failure.\r\n            </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/17.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Concat Method (IEnumerable&lt;Arrow&lt;T, R&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Concat Method (IEnumerable&lt;Arrow&lt;T, R&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCollects the results of a series of computations.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, IEnumerable&lt;R&gt;&gt; Concat (\n        IEnumerable&lt;Arrow&lt;T, R&gt;&gt; <i>sources</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">sources</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sequence of computations.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation returning a sequence of results.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/170.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUsed to resolve or fail a future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/171.html\">Promise</a></td>\r\n<td>Constructs a new Promise bound to an unresolved future.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/172.html\">Fail</a></td>\r\n<td>Future failed with an exception.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/173.html\">Fulfill</a></td>\r\n<td>Resolve the future to a legitimate value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/174.html\">Future</a></td>\r\n<td>The future this promise is bound to.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/171.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstructs a new Promise bound to an unresolved future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Promise ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/172.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt;.Fail Method (Exception)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt;.Fail Method (Exception)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFuture failed with an exception.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Resolved&lt;T&gt; Fail (\n        Exception <i>reason</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reason</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason the future failed to resolve.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/153.html\">PromiseResolvedException</a></td>\r\n<td>Thrown if the promise is already resolved.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/173.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt;.Fulfill Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt;.Fulfill Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nResolve the future to a legitimate value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Resolved&lt;T&gt; Fulfill (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nResolve this future to the given value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/153.html\">PromiseResolvedException</a></td>\r\n<td>Thrown if the promise is already resolved.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/174.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Promise&lt;T&gt;.Future Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Promise&lt;T&gt;.Future Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe future this promise is bound to.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Future&lt;T&gt; Future { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/175.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFunctions on Future values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/176.html\">Do&lt;T, U&gt;</a></td>\r\n<td>Creates a new future of type <span class=\"Code\">U</span> which will be computed from the result of\r\n            the future of type <span class=\"Code\">T</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/177.html\">Fail&lt;T&gt;</a></td>\r\n<td>Construct a failed future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/178.html\">Fulfill&lt;T&gt;</a></td>\r\n<td>Construct a resolved future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/179.html\">Promise&lt;T&gt;</a></td>\r\n<td>Convenience function for starting a computation that explicitly sets a promise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/180.html\">Select&lt;T, U&gt;</a></td>\r\n<td>Overloaded. Project a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/181.html\">SelectMany&lt;T, U&gt;</a></td>\r\n<td>Project a future to another future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/182.html\">SelectMany&lt;T, U, R&gt;</a></td>\r\n<td>Projects a sequence of futures to a final future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/183.html\">Spawn</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/184.html\">Spawn&lt;T&gt;</a></td>\r\n<td>Overloaded. Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/185.html\">Spawn&lt;TArg, T&gt;</a></td>\r\n<td>Overloaded. Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/186.html\">Spawn&lt;TArg0, TArg1, T&gt;</a></td>\r\n<td>Overloaded. Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/187.html\">Spawn&lt;TArg0, TArg1, TArg2, T&gt;</a></td>\r\n<td>Overloaded. Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/188.html\">Spawn&lt;TArg0, TArg1, TArg2, TArg3, T&gt;</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/189.html\">SpawnAny&lt;T&gt;</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/190.html\">SpawnRaise&lt;TArg&gt;</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/176.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Do&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Do&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreates a new future of type <span class=\"Code\">U</span> which will be computed from the result of\r\n            the future of type <span class=\"Code\">T</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;U&gt; Do&lt;T, U&gt; (\n        Future&lt;T&gt; <i>future</i>,\n        Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current future's type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new future's type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">future</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe future to transform.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function creating the new future's type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new future constructed from the existing future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/177.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Fail&lt;T&gt; Method (Exception)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Fail&lt;T&gt; Method (Exception)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a failed future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Resolved&lt;T&gt; Fail&lt;T&gt; (\n        Exception <i>reason</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reason</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason for failure.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA failed future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/178.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Fulfill&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Fulfill&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a resolved future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Resolved&lt;T&gt; Fulfill&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value of the future.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA resolved future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/179.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Promise&lt;T&gt; Method (Action&lt;Promise&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Promise&lt;T&gt; Method (Action&lt;Promise&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvenience function for starting a computation that explicitly sets a promise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Promise&lt;T&gt; (\n        Action&lt;Promise&lt;T&gt;&gt; <i>body</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value of the future being constructed.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">body</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to start with the given promise.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe future for the result of the computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/18.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Do Method (Action&lt;R&gt;, Func&lt;Exception, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Do Method (Action&lt;R&gt;, Func&lt;Exception, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a computation that executes in an exception handler.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, R&gt; Do (\n        Action&lt;R&gt; <i>onNext</i>,\n        Func&lt;Exception, R&gt; <i>onError</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">onNext</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation that runs in the try block.\r\n</div>\r\n<div class=\"CommentParameterName\">onError</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation that runs if an exception is thrown.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/180.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Select&lt;T, U&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Select&lt;T, U&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/191.html\">Future.Select&lt;T, U&gt; (Future&lt;T&gt;, Func&lt;T, U&gt;, Func&lt;Exception, U&gt;)</a></td>\r\n<td>Project a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>. This\r\n            overload specifies an exception handler.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/192.html\">Future.Select&lt;T, U&gt; (Future&lt;T&gt;, Func&lt;T, U&gt;)</a></td>\r\n<td>Project a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/181.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.SelectMany&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.SelectMany&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject a future to another future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;U&gt; SelectMany&lt;T, U&gt; (\n        Future&lt;T&gt; <i>future</i>,\n        Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the source future.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned future.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">future</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source future.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\n\r\n            A selection function used to map values of type <span class=\"Code\">T</span>\r\n            to futures of type <span class=\"Code\">U</span>.\r\n            \r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new future of type <span class=\"Code\">U</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/182.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.SelectMany&lt;T, U, R&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.SelectMany&lt;T, U, R&gt; Method (Future&lt;T&gt;, Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects a sequence of futures to a final future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;R&gt; SelectMany&lt;T, U, R&gt; (\n        Future&lt;T&gt; <i>future</i>,\n        Func&lt;Future&lt;T&gt;, Future&lt;U&gt;&gt; <i>selector</i>,\n        Func&lt;T, U, R&gt; <i>result</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first future.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the intermediate future.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned future.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">future</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe selector for the intermediate future.\r\n</div>\r\n<div class=\"CommentParameterName\">result</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe selector for the resulting future.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for a value of type <span class=\"Code\">R</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/183.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn Method (Action)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn Method (Action)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; Spawn (\n        Action <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/184.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/193.html\">Future.Spawn&lt;T&gt; (Func&lt;AsyncCallback, object, IAsyncResult&gt;, Func&lt;IAsyncResult, T&gt;)</a></td>\r\n<td>Begin an async operation given the begin and end calls.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/194.html\">Future.Spawn&lt;T&gt; (Func&lt;T&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/195.html\">Future.Spawn&lt;TArg&gt; (TArg, Action&lt;TArg&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/185.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg, T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg, T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/196.html\">Future.Spawn&lt;TArg, T&gt; (TArg, Func&lt;TArg, T&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/197.html\">Future.Spawn&lt;TArg0, TArg1&gt; (TArg0, TArg1, Action&lt;TArg0, TArg1&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/186.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/198.html\">Future.Spawn&lt;TArg0, TArg1, T&gt; (TArg0, TArg1, Func&lt;TArg0, TArg1, T&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/199.html\">Future.Spawn&lt;TArg0, TArg1, TArg2&gt; (TArg0, TArg1, TArg2, Action&lt;TArg0, TArg1, TArg2&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/187.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, TArg2, T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, TArg2, T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/200.html\">Future.Spawn&lt;TArg0, TArg1, TArg2, T&gt; (TArg0, TArg1, TArg2, Func&lt;TArg0, TArg1, TArg2, T&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/201.html\">Future.Spawn&lt;TArg0, TArg1, TArg2, TArg3&gt; (TArg0, TArg1, TArg2, TArg3, Action&lt;TArg0, TArg1, TArg2, TArg3&gt;)</a></td>\r\n<td>Execute the given function asynchronously.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/188.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, TArg2, TArg3, T&gt; Method (TArg0, TArg1, TArg2, TArg3, Func&lt;TArg0, TArg1, TArg2, TArg3, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, TArg2, TArg3, T&gt; Method (TArg0, TArg1, TArg2, TArg3, Func&lt;TArg0, TArg1, TArg2, TArg3, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;TArg0, TArg1, TArg2, TArg3, T&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        TArg2 <i>arg2</i>,\n        TArg3 <i>arg3</i>,\n        Func&lt;TArg0, TArg1, TArg2, TArg3, T&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's fourth argument.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's fourth argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/189.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.SpawnAny&lt;T&gt; Method (T, object[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.SpawnAny&lt;T&gt; Method (T, object[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;object&gt; SpawnAny&lt;T&gt; (\n        T <i>call</i>,\n        params object[] <i>args</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: TypeConstraint&lt;Delegate&gt;</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentParameterName\">args</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function arguments.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/19.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Fanout&lt;U, V&gt; Method (Arrow&lt;U, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Fanout&lt;U, V&gt; Method (Arrow&lt;U, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombines two computations into a computation that accepts a pair that is split,\r\n            fed to each computation separately, then combined.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;Pair&lt;T, U&gt;, Pair&lt;R, V&gt;&gt; Fanout&lt;U, V&gt; (\n        Arrow&lt;U, V&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input of the other computation.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output of the other computation.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other computation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/190.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.SpawnRaise&lt;TArg&gt; Method (Delegate, object, TArg)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.SpawnRaise&lt;TArg&gt; Method (Delegate, object, TArg)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; SpawnRaise&lt;TArg&gt; (\n        Delegate <i>call</i>,\n        object <i>sender</i>,\n        TArg <i>args</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where TArg</td>\n<td>&nbsp;: EventArgs</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the event's EventArgs parameter.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentParameterName\">sender</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sender argument of the event.\r\n</div>\r\n<div class=\"CommentParameterName\">args</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe EventArgs for the event.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/191.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Select&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;T, U&gt;, Func&lt;Exception, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Select&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;T, U&gt;, Func&lt;Exception, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>. This\r\n            overload specifies an exception handler.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;U&gt; Select&lt;T, U&gt; (\n        Future&lt;T&gt; <i>future</i>,\n        Func&lt;T, U&gt; <i>selector</i>,\n        Func&lt;Exception, U&gt; <i>handler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current future's type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new future's type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">future</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe future to transform.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe selection function.\r\n</div>\r\n<div class=\"CommentParameterName\">handler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function invoked if the future resolved to an exception.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new future constructed from the existing future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/192.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Select&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Select&lt;T, U&gt; Method (Future&lt;T&gt;, Func&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject a future of type <span class=\"Code\">T</span> to a future of type <span class=\"Code\">U</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;U&gt; Select&lt;T, U&gt; (\n        Future&lt;T&gt; <i>future</i>,\n        Func&lt;T, U&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current future's type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new future's type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">future</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe future to transform.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe selection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new future constructed from the existing future.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/193.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;T&gt; Method (Func&lt;AsyncCallback, object, IAsyncResult&gt;, Func&lt;IAsyncResult, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;T&gt; Method (Func&lt;AsyncCallback, object, IAsyncResult&gt;, Func&lt;IAsyncResult, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBegin an async operation given the begin and end calls.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;T&gt; (\n        Func&lt;AsyncCallback, object, IAsyncResult&gt; <i>begin</i>,\n        Func&lt;IAsyncResult, T&gt; <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value to generate.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">begin</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe BeginAsync operation.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe EndAsync operation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/194.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;T&gt; Method (Func&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;T&gt; Method (Func&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;T&gt; (\n        Func&lt;T&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA promise for the function's return value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/195.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg&gt; Method (TArg, Action&lt;TArg&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg&gt; Method (TArg, Action&lt;TArg&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; Spawn&lt;TArg&gt; (\n        TArg <i>arg0</i>,\n        Action&lt;TArg&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first argument to the function.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/196.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg, T&gt; Method (TArg, Func&lt;TArg, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg, T&gt; Method (TArg, Func&lt;TArg, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;TArg, T&gt; (\n        TArg <i>arg0</i>,\n        Func&lt;TArg, T&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/197.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1&gt; Method (TArg0, TArg1, Action&lt;TArg0, TArg1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1&gt; Method (TArg0, TArg1, Action&lt;TArg0, TArg1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; Spawn&lt;TArg0, TArg1&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        Action&lt;TArg0, TArg1&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first argument to the function.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second argument to the function.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/198.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, T&gt; Method (TArg0, TArg1, Func&lt;TArg0, TArg1, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, T&gt; Method (TArg0, TArg1, Func&lt;TArg0, TArg1, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;TArg0, TArg1, T&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        Func&lt;TArg0, TArg1, T&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/199.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, TArg2&gt; Method (TArg0, TArg1, TArg2, Action&lt;TArg0, TArg1, TArg2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, TArg2&gt; Method (TArg0, TArg1, TArg2, Action&lt;TArg0, TArg1, TArg2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; Spawn&lt;TArg0, TArg1, TArg2&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        TArg2 <i>arg2</i>,\n        Action&lt;TArg0, TArg1, TArg2&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's third argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/2.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Arrow Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Arrow Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Provides a LINQ query interface to computations.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/13.html\">Sasa.Arrow</a></td>\r\n<td>\r\n        Provides a LINQ query interface to computations.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/20.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.First&lt;U&gt; Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.First&lt;U&gt; Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGiven a computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, construct\r\n            a computation that transforms the first argument and passes the second argument with no change.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;Pair&lt;T, U&gt;, Pair&lt;R, U&gt;&gt; First&lt;U&gt; ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation that transforms the first argument.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/200.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, TArg2, T&gt; Method (TArg0, TArg1, TArg2, Func&lt;TArg0, TArg1, TArg2, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, TArg2, T&gt; Method (TArg0, TArg1, TArg2, Func&lt;TArg0, TArg1, TArg2, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;T&gt; Spawn&lt;TArg0, TArg1, TArg2, T&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        TArg2 <i>arg2</i>,\n        Func&lt;TArg0, TArg1, TArg2, T&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/201.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Future.Spawn&lt;TArg0, TArg1, TArg2, TArg3&gt; Method (TArg0, TArg1, TArg2, TArg3, Action&lt;TArg0, TArg1, TArg2, TArg3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Future.Spawn&lt;TArg0, TArg1, TArg2, TArg3&gt; Method (TArg0, TArg1, TArg2, TArg3, Action&lt;TArg0, TArg1, TArg2, TArg3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the given function asynchronously.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/150.html\">Future</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Future&lt;Empty&gt; Spawn&lt;TArg0, TArg1, TArg2, TArg3&gt; (\n        TArg0 <i>arg0</i>,\n        TArg1 <i>arg1</i>,\n        TArg2 <i>arg2</i>,\n        TArg3 <i>arg3</i>,\n        Action&lt;TArg0, TArg1, TArg2, TArg3&gt; <i>call</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TArg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">TArg3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function's fourth argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">arg3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function's fourth argument.\r\n</div>\r\n<div class=\"CommentParameterName\">call</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA future for the function call's result.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/202.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IPromise&lt;TFuture, TResolved, T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IPromise&lt;TFuture, TResolved, T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContract for promises, which are used to resolve or fail a future.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/156.html\">IPromise&lt;TFuture, TResolved, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/203.html\">Fail</a></td>\r\n<td>Future failed with an exception.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/204.html\">Fulfill</a></td>\r\n<td>Resolve the future to a legitimate value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/205.html\">Future</a></td>\r\n<td>The future value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/203.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IPromise&lt;TFuture, TResolved, T&gt;.Fail Method (Exception)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IPromise&lt;TFuture, TResolved, T&gt;.Fail Method (Exception)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFuture failed with an exception.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/156.html\">IPromise&lt;TFuture, TResolved, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TResolved Fail (\n        Exception <i>reason</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reason</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason the future failed to resolve.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/204.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IPromise&lt;TFuture, TResolved, T&gt;.Fulfill Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IPromise&lt;TFuture, TResolved, T&gt;.Fulfill Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nResolve the future to a legitimate value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/156.html\">IPromise&lt;TFuture, TResolved, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TResolved Fulfill (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nResolve this future to the given value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/205.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IPromise&lt;TFuture, TResolved, T&gt;.Future Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IPromise&lt;TFuture, TResolved, T&gt;.Future Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe future value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/156.html\">IPromise&lt;TFuture, TResolved, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TFuture Future { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/206.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IFuture&lt;TFuture, T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IFuture&lt;TFuture, T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA future value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/155.html\">IFuture&lt;TFuture, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/207.html\">ContinueWith</a></td>\r\n<td>Register a continuation to be invoked on future resolution.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/207.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IFuture&lt;TFuture, T&gt;.ContinueWith Method (Action&lt;TFuture&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IFuture&lt;TFuture, T&gt;.ContinueWith Method (Action&lt;TFuture&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRegister a continuation to be invoked on future resolution.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/155.html\">IFuture&lt;TFuture, T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/91.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void ContinueWith (\n        Action&lt;TFuture&gt; <i>continuation</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">continuation</div>\r\n<div class=\"ParameterCommentContainer\">\r\nContinuation invoked when the future resolves to a value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/208.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader5\" onclick=\"javascript: SetSectionVisibility(5, true); SetExpandCollapseAllToCollapseAll();\">Interfaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Extensions to numbers, thread-safe event handling, tuples, endian encoding, and more.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/215.html\">Atomics</a></td>\r\n<td>Extensions to System.Threading.Interlocked.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/216.html\">CodeGen</a></td>\r\n<td>Utility functinos for code generation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/217.html\">Decimals</a></td>\r\n<td>Extension methods on System.Decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/218.html\">Doubles</a></td>\r\n<td>Extension methods on System.Double.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a></td>\r\n<td>This type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, <span class=\"Code\">TThird</span> or\r\n            <span class=\"Code\">TFourth</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a></td>\r\n<td>This type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, or <span class=\"Code\">TThird</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a></td>\r\n<td>This type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            or <span class=\"Code\">TSecond</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/222.html\">Empty</a></td>\r\n<td>An empty/void value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/223.html\">Endian</a></td>\r\n<td>Endian conversions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/224.html\">Events</a></td>\r\n<td>Extension methods to safely trigger events. Triggering events\r\n             using Raise() is both null-safe and thread-safe. Delegates\r\n             are still required to ensure the state they are accessing\r\n             is valid.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/225.html\">ImmutableValue&lt;T&gt;</a></td>\r\n<td>An immutable value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/226.html\">Integers</a></td>\r\n<td>Extensions for core int values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/227.html\">Lazy</a></td>\r\n<td>Convenience methods for lazy values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a></td>\r\n<td>A thread-safe lazy value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/229.html\">MetaExtensions</a></td>\r\n<td>Various simple meta-programming extensions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a></td>\r\n<td>This class encapsulates a non-null reference. An of this class instance serves as evidence\r\n            that the encapsulated reference is not null.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/231.html\">Null</a></td>\r\n<td>Convenience functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/232.html\">Option</a></td>\r\n<td>Option operations.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a></td>\r\n<td>Represents a possibly null value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a></td>\r\n<td>A 2-element tuple type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a></td>\r\n<td>A 4-element tuple type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/236.html\">Ref&lt;T&gt;</a></td>\r\n<td>Simple reference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/237.html\">Singles</a></td>\r\n<td>Extension methods on System.Single.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a></td>\r\n<td>A three-element tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/239.html\">Tuple</a></td>\r\n<td>Tuple convenience functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/240.html\">TypeConstraint&lt;T, TBase&gt;</a></td>\r\n<td>Specifies a subtyping type constraint relationship. You use this constraint\r\n            primarily when compiling with other code that specifies ITypeConstraint.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/241.html\">TypeConstraint&lt;T&gt;</a></td>\r\n<td>Specifies a type constraint that normally C# would not be able to enforce.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/242.html\">Types</a></td>\r\n<td>Extensions to System.Type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/243.html\">Union128</a></td>\r\n<td>Represents a 128-bit decimal union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/244.html\">Union16</a></td>\r\n<td>Represents a 16-bit union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/245.html\">Union32</a></td>\r\n<td>Represents a 32-bit union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/246.html\">Union64</a></td>\r\n<td>Represents a 64-bit union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a></td>\r\n<td>Exposes a strongly typed interface to an encapsulated WeakReference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader5\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg5\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(5);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(5);\">\r\nPublic Interfaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv5\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/248.html\">IOptional&lt;T&gt;</a></td>\r\n<td>Encapsulates a value that may or may not be available.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/249.html\">IRef&lt;T&gt;</a></td>\r\n<td>A mutable reference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/250.html\">IResolvable&lt;T&gt;</a></td>\r\n<td>A container for which you can test whether a value is available.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/251.html\">IValue&lt;T&gt;</a></td>\r\n<td>A read-only encapsulated value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/252.html\">IVolatile&lt;T&gt;</a></td>\r\n<td>A volatile value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/209.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Collections Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Collections Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader5\" onclick=\"javascript: SetSectionVisibility(5, true); SetExpandCollapseAllToCollapseAll();\">Interfaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Some purely functional collections, and extension methods for System.Collections.Generic.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/144.html\">Arrays</a></td>\r\n<td>Array extensions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/145.html\">Dictionaries</a></td>\r\n<td>Useful extensions to <span class=\"PseudoLink\">System.Collections.Generic.IDictionary`2</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a></td>\r\n<td>Environment mapping names to values, matching the semantics of lexical scoping.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/147.html\">PQueue</a></td>\r\n<td>Extension methods on <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a></td>\r\n<td>A persistent queue.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a></td>\r\n<td>A purely functional stack.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/150.html\">Set</a></td>\r\n<td>Utility functions for <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a></td>\r\n<td>A simple set based on <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader5\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg5\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(5);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(5);\">\r\nPublic Interfaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv5\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a></td>\r\n<td>The interface describing a purely functional collection.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/21.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.If Method (Predicate&lt;T&gt;, Arrow&lt;T, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.If Method (Predicate&lt;T&gt;, Arrow&lt;T, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRuns one computation or the other based on a condition.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, R&gt; If (\n        Predicate&lt;T&gt; <i>condition</i>,\n        Arrow&lt;T, R&gt; <i>_else</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">condition</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe conditional.\r\n</div>\r\n<div class=\"CommentParameterName\">_else</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to run if the conditional returns false.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/210.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Enum Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Enum Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Statically typed versions of System.Enum static methods.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/351.html\">Enums</a></td>\r\n<td>Extensions for System.Enum.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/211.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Func Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Func Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Operations on delegates, including coercing between compatible delegate types, currying, fixed points, and more.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/322.html\">Func</a></td>\r\n<td>Typed delegate extension methods.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/212.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Linq Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Linq Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Extensions to System.Linq and IEnumerable, including formatting, append/prepend, .\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/286.html\">Enumerables</a></td>\r\n<td>Extensions to IEnumerable.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/287.html\">Zips</a></td>\r\n<td>Zip functions merge streams of values together into tuples.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/213.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.String Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.String Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Extension methods on strings, including wrapping, slicing, splitting, tokenizing, and more.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/258.html\">Strings</a></td>\r\n<td>String extension methods.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/259.html\">Strings.Token</a></td>\r\n<td>Tokens identified by the Tokenize function.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/214.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Web Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Web Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Encoding bytes to url-safe strings, without hex-encoded escape strings.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/282.html\">Url64</a></td>\r\n<td>Encodes bytes into a base64 alphabet that is safe to embed into URLs.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/215.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to System.Threading.Interlocked.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Atomics </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/413.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/216.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>CodeGen Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">CodeGen Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functinos for code generation.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class CodeGen </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/401.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/217.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Decimals Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Decimals Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Decimals </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/72.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/218.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Doubles Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Doubles Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Double.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Doubles </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/290.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/219.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, <span class=\"Code\">TThird</span> or\r\n            <span class=\"Code\">TFourth</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Either&lt;TFirst, TSecond, TThird, TFourth&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFirst</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'First' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TSecond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Second' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TThird</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Third' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TFourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Fourth' type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/349.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/22.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.operator implicit Method (Func&lt;T, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.operator implicit Method (Func&lt;T, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert delegates to arrows.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Arrow&lt;T, R&gt; (\n        Func&lt;T, R&gt; <i>thunk</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">thunk</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new arrow.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/220.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, or <span class=\"Code\">TThird</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Either&lt;TFirst, TSecond, TThird&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFirst</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'First' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TSecond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Second' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TThird</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Third' type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/379.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/221.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            or <span class=\"Code\">TSecond</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Either&lt;TFirst, TSecond&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFirst</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'First' type.\r\n</div>\r\n<div class=\"CommentParameterName\">TSecond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPossible 'Second' type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/476.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/222.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn empty/void value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Empty :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/321.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/223.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEndian conversions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Endian </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/22.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/224.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to safely trigger events. Triggering events\r\n             using Raise() is both null-safe and thread-safe. Delegates\r\n             are still required to ensure the state they are accessing\r\n             is valid.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Events </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThese functions provide a certain type of thread-safety. Eric\r\n             Lippert described the two thread-safety issues with events on\r\n             his blog:\r\n             \r\n             http://blogs.msdn.com/ericlippert/archive/2009/04/29/events-and-races.aspx\r\n            \r\n             This Events class provides thread-safety #1 in his list, but\r\n             not #2. Clients do not need to perform null checks before calling\r\n             Raise() on them, and do not need to perform locking to synchronize\r\n             add/remove handlers if they use the Add()/Remove() functions,\r\n             etc.\r\n             \r\n             Clients are still required to ensure that any delegates\r\n             called are accessing valid state, even though that state may\r\n             have changed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/293.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/225.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ImmutableValue&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ImmutableValue&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn immutable value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class ImmutableValue&lt;T&gt; :&nbsp;</td>\n<td>\nIValue&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/60.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/226.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions for core int values.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Integers </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/63.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/227.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvenience methods for lazy values.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Lazy </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/263.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/228.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Lazy&lt;T&gt; :&nbsp;</td>\n<td>\nIOptional&lt;T&gt;,<br />\nIResolvable&lt;T&gt;,<br />\nIValue&lt;T&gt;,<br />\nIVolatile&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value to be lazily evaluated.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis implements IOptional&lt;T&gt; since it is temporally optional. In other words, at any given\r\n            time it may or may not have a value.\r\n            \r\n            In general, lazy values computed using side-effecting functions are very difficult to reason about.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/253.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/229.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MetaExtensions Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MetaExtensions Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nVarious simple meta-programming extensions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class MetaExtensions </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/347.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/23.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Second&lt;U&gt; Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Second&lt;U&gt; Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGiven a computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, construct\r\n            a computation that transforms the second argument and passes the first argument with no change.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;Pair&lt;U, T&gt;, Pair&lt;U, R&gt;&gt; Second&lt;U&gt; ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation that transforms the second argument.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/230.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis class encapsulates a non-null reference. An of this class instance serves as evidence\r\n            that the encapsulated reference is not null.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class NonNull&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />IEquatable&lt;TCollection&gt;,<br />\nIEquatable&lt;NonNull&lt;T&gt;&gt;,<br />\nIValue&lt;T&gt;\n</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated reference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nProper usage is to never create or declare NonNull types as locals. NonNull should\r\n            only be used to decorate method arguments. The only way an invalid instance of NonNull can\r\n            be created is when declaring it as a local:\r\n            ...\r\n            NonNull&lt;T&gt; foo;\r\n            ...\r\n            T bar = foo; // NullReferenceException\r\n            \r\n            When it comes to high assurance code, you should utilize Option and NonNull types for\r\n            method arguments, to declare which arguments may be null and which must necessarily be\r\n            non-null. The type checker will ensure that values are handled properly within the method,\r\n            and client code will receive the errors when passing in null references for NonNull values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/327.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/231.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Null Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Null Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvenience functions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Null </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/345.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/232.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOption operations.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Option </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis class provides all the LINQ overloads needed to transparently work\r\n            with System.Nullable&lt;T&gt; and Option&lt;&gt; in LINQ computations.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/113.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/233.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a possibly null value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Option&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />IEquatable&lt;TCollection&gt;,<br />\nIEquatable&lt;Option&lt;T&gt;&gt;,<br />\nIOptional&lt;T&gt;,<br />\nIResolvable&lt;T&gt;,<br />\nIValue&lt;T&gt;,<br />\nIVolatile&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nWhen it comes to high assurance code, you should utilize Option and NonNull types for\r\n            method arguments, to declare which arguments may be null and which must necessarily be\r\n            non-null. The type checker will ensure that values are handled properly within the method,\r\n            and client code will receive the errors when passing in null references for NonNull values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/92.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/234.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA 2-element tuple type.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Pair&lt;T0, T1&gt; :&nbsp;</td>\n<td>\nValueType,<br />IEquatable&lt;Pair&lt;T0, T1&gt;&gt;,<br />\nIComparable&lt;Pair&lt;T0, T1&gt;&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nType of Pair.First.\r\n</div>\r\n<div class=\"CommentParameterName\">T1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nType of Pair.Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/457.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/235.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA 4-element tuple type.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class Quad&lt;T0, T1, T2, T3&gt; :&nbsp;</td>\n<td>\nIEquatable&lt;Quad&lt;T0, T1, T2, T3&gt;&gt;,<br />\nIComparable&lt;Quad&lt;T0, T1, T2, T3&gt;&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first value.\r\n</div>\r\n<div class=\"CommentParameterName\">T1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second value.\r\n</div>\r\n<div class=\"CommentParameterName\">T2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third value.\r\n</div>\r\n<div class=\"CommentParameterName\">T3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/75.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/236.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Ref&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Ref&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSimple reference.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Ref&lt;T&gt; :&nbsp;</td>\n<td>\nIRef&lt;T&gt;,<br />\nIValue&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/57.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/237.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Singles Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Singles Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Single.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Singles </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/376.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/238.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA three-element tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Triple&lt;T0, T1, T2&gt; :&nbsp;</td>\n<td>\nValueType,<br />IEquatable&lt;Triple&lt;T0, T1, T2&gt;&gt;,<br />\nIComparable&lt;Triple&lt;T0, T1, T2&gt;&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFirst type.\r\n</div>\r\n<div class=\"CommentParameterName\">T1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nSecond type.\r\n</div>\r\n<div class=\"CommentParameterName\">T2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThird type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/266.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/239.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTuple convenience functions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Tuple </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/424.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/24.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Select&lt;U&gt; Method (Func&lt;R, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Select&lt;U&gt; Method (Func&lt;R, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransforms the computation from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>, to\r\n            <span class=\"Code\">T</span> to <span class=\"Code\">U</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, U&gt; Select&lt;U&gt; (\n        Func&lt;R, U&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new result type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe transformation function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/240.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T, TBase&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T, TBase&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies a subtyping type constraint relationship. You use this constraint\r\n            primarily when compiling with other code that specifies ITypeConstraint.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class TypeConstraint&lt;T, TBase&gt; :&nbsp;</td>\n<td>\nTypeConstraint&lt;TBase&gt;<br />\n</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: TBase</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe inherited type.\r\n</div>\r\n<div class=\"CommentParameterName\">TBase</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe base type for which the constraint is enforced.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/286.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/241.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies a type constraint that normally C# would not be able to enforce.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class TypeConstraint&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/282.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/242.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to System.Type.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Types </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/403.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/243.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 128-bit decimal union.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Union128 :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/15.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/244.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 16-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Union16 :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/493.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/245.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 32-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Union32 :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/499.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/246.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 64-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Union64 :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/7.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/247.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExposes a strongly typed interface to an encapsulated WeakReference.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Weak&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />IRef&lt;T&gt;,<br />\nIValue&lt;T&gt;,<br />\nIVolatile&lt;T&gt;,<br />\nIEquatable&lt;TCollection&gt;,<br />\nIEquatable&lt;Weak&lt;T&gt;&gt;\n</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the object in the WeakReference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/432.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/248.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IOptional&lt;T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IOptional&lt;T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncapsulates a value that may or may not be available.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IOptional&lt;T&gt; :&nbsp;</td>\n<td>\nIResolvable&lt;T&gt;,<br />\nIValue&lt;T&gt;,<br />\nIVolatile&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>There are no members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/249.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IRef&lt;T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IRef&lt;T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA mutable reference.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IRef&lt;T&gt; :&nbsp;</td>\n<td>\nIValue&lt;T&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value the reference contains.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/142.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/25.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.SelectMany&lt;U&gt; Method (Func&lt;R, Arrow&lt;T, U&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.SelectMany&lt;U&gt; Method (Func&lt;R, Arrow&lt;T, U&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject result <span class=\"Code\">R</span> into a new computation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, U&gt; SelectMany&lt;U&gt; (\n        Func&lt;R, Arrow&lt;T, U&gt;&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe result type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/250.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IResolvable&lt;T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IResolvable&lt;T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA container for which you can test whether a value is available.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IResolvable&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/135.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/251.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IValue&lt;T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IValue&lt;T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA read-only encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IValue&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/137.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/252.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IVolatile&lt;T&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IVolatile&lt;T&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA volatile value.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IVolatile&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value held in the reference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/139.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/253.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/254.html\">Lazy</a></td>\r\n<td>Overloaded. Return a lazily value computed by invoked thunk().</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/255.html\">operator implicit</a></td>\r\n<td>Overloaded. Implicitly construct a lazy value from a thunk.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/256.html\">TryGetValue</a></td>\r\n<td>Attempts to extract the value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/257.html\">HasValue</a></td>\r\n<td>Returns true if the value has been computed.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/258.html\">Value</a></td>\r\n<td>Force evaluation of the value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/254.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt; Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt; Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a lazily value computed by invoked thunk().\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/259.html\">Lazy (Func&lt;T&gt;)</a></td>\r\n<td>Return a lazily value computed by invoked thunk().</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/260.html\">Lazy (T)</a></td>\r\n<td>Return a resolved lazy value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/255.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly construct a lazy value from a thunk.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/261.html\">Lazy&lt;T&gt;.operator implicit (Func&lt;T&gt;)</a></td>\r\n<td>Implicitly construct a lazy value from a thunk.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/262.html\">Lazy&lt;T&gt;.operator implicit (T)</a></td>\r\n<td>Implicitly convert a value to an initialized lazy value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/256.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.TryGetValue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.TryGetValue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempts to extract the value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool TryGetValue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lazy value to extract.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the lazy value was already forced, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis method is thread-safe.\r\n            \r\n            Calling this method does not force the lazy computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/257.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.HasValue Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.HasValue Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the value has been computed.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool HasValue { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis proeprty is thread-safe.\r\n            \r\n            Accessing this property does not force the lazy computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/258.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nForce evaluation of the value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/259.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt; Constructor (Func&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt; Constructor (Func&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a lazily value computed by invoked thunk().\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Lazy (\n        Func&lt;T&gt; <i>thunk</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">thunk</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function used to compute the value when required.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/26.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.SelectMany&lt;U, V&gt; Method (Func&lt;R, Arrow&lt;T, U&gt;&gt;, Func&lt;R, U, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.SelectMany&lt;U, V&gt; Method (Func&lt;R, Arrow&lt;T, U&gt;&gt;, Func&lt;R, U, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject result <span class=\"Code\">R</span> into a new computation of type <span class=\"Code\">U</span>,\r\n            and collect and project into a final computation of type <span class=\"Code\">V</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, V&gt; SelectMany&lt;U, V&gt; (\n        Func&lt;R, Arrow&lt;T, U&gt;&gt; <i>selector</i>,\n        Func&lt;R, U, V&gt; <i>resultSelector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate result type.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final result type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate projection.\r\n</div>\r\n<div class=\"CommentParameterName\">resultSelector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final projection.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/260.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a resolved lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Lazy (\n        T <i>v</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">v</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to encapsulate in a lazy type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/261.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.operator implicit Method (Func&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.operator implicit Method (Func&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly construct a lazy value from a thunk.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Lazy&lt;T&gt; (\n        Func&lt;T&gt; <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe thunk used to compute the lazy value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA lazily computed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/262.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy&lt;T&gt;.operator implicit Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy&lt;T&gt;.operator implicit Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a value to an initialized lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Lazy&lt;T&gt; (\n        T <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lazily computed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/263.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvenience methods for lazy values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/227.html\">Lazy</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/264.html\">AsLazy&lt;T&gt;</a></td>\r\n<td>An extension to explicitly construct a lazy value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/265.html\">Create&lt;T&gt;</a></td>\r\n<td>Construct a new lazy value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/264.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy.AsLazy&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy.AsLazy&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn extension to explicitly construct a lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/227.html\">Lazy</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Lazy&lt;T&gt; AsLazy&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to encapsulate.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA lazy value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/265.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Lazy.Create&lt;T&gt; Method (Func&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Lazy.Create&lt;T&gt; Method (Func&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new lazy value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/227.html\">Lazy</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Lazy&lt;T&gt; Create&lt;T&gt; (\n        Func&lt;T&gt; <i>make</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the lazy value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">make</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function constructing the lazy value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new lazily initialized value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/266.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA three-element tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/267.html\">Triple</a></td>\r\n<td>Construct a new Triple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/268.html\">Bind</a></td>\r\n<td>Bind all values to locals.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/269.html\">CompareTo</a></td>\r\n<td>Compare the two values, sequentially Triple.First, then Triple.Second if\r\n            Triple.First are equal, then Triple.Third if Triple.Second is equal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/270.html\">Equals</a></td>\r\n<td>Overloaded. Test Triple equality element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/271.html\">GetHashCode</a></td>\r\n<td>Compute hash code.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/272.html\">operator !=</a></td>\r\n<td>Compares two Triples for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/273.html\">operator &lt;</a></td>\r\n<td>Orders two tuples.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/274.html\">operator ==</a></td>\r\n<td>Compares two Triples for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/275.html\">operator &gt;</a></td>\r\n<td>Orders two tuples.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/276.html\">ToString</a></td>\r\n<td>Return a string representation of this Triple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/277.html\">First</a></td>\r\n<td>First element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/278.html\">Second</a></td>\r\n<td>Second element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/279.html\">Third</a></td>\r\n<td>Third element of the tuple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/267.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt; Constructor (T0, T1, T2)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt; Constructor (T0, T1, T2)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new Triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Triple (\n        T0 <i>first</i>,\n        T1 <i>second</i>,\n        T2 <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/268.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Bind Method (out T0, out T1, out T2)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Bind Method (out T0, out T1, out T2)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBind all values to locals.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bind (\n        out T0 <i>first</i>,\n        out T1 <i>second</i>,\n        out T2 <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/269.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.CompareTo Method (Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.CompareTo Method (Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare the two values, sequentially Triple.First, then Triple.Second if\r\n            Triple.First are equal, then Triple.Third if Triple.Second is equal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int CompareTo (\n        Triple&lt;T0, T1, T2&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Triple to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the tuples are equal element-wise, returns a number greater than zero if\r\n            the current tuple is greater than <span class=\"Code\">other</span> element-wise, else returns a\r\n            number greater than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/27.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.SplitCombine&lt;U&gt; Method (Arrow&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.SplitCombine&lt;U&gt; Method (Arrow&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMerges two computation results.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Arrow&lt;T, Pair&lt;R, U&gt;&gt; SplitCombine&lt;U&gt; (\n        Arrow&lt;T, U&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type of the other computation.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to merge with.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/270.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest Triple equality element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/280.html\">Triple&lt;T0, T1, T2&gt;.Equals (Triple&lt;T0, T1, T2&gt;)</a></td>\r\n<td>Test Triple equality element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/281.html\">Triple&lt;T0, T1, T2&gt;.Equals (object)</a></td>\r\n<td>Test equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/271.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute hash code.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHash of the encapsulated values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/272.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.operator != Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.operator != Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Triples for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Triple&lt;T0, T1, T2&gt; <i>left</i>,\n        Triple&lt;T0, T1, T2&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Triple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Triple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Triples are not equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/273.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.operator &lt; Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.operator &lt; Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two tuples.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &lt; (\n        Triple&lt;T0, T1, T2&gt; <i>left</i>,\n        Triple&lt;T0, T1, T2&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first tuple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the tuples are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/274.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.operator == Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.operator == Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Triples for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Triple&lt;T0, T1, T2&gt; <i>left</i>,\n        Triple&lt;T0, T1, T2&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Triple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Triple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Triples are equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/275.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.operator &gt; Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.operator &gt; Method (Triple&lt;T0, T1, T2&gt;, Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two tuples.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &gt; (\n        Triple&lt;T0, T1, T2&gt; <i>left</i>,\n        Triple&lt;T0, T1, T2&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first tuple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the tuples are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/276.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of this Triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nString representation of this Triple.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/277.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.First Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.First Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFirst element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T0 First { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/278.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Second Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Second Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSecond element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T1 Second { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/279.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Third Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Third Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThird element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T2 Third { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/28.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow&lt;T, R&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow&lt;T, R&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe encapsulated computation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/15.html\">Arrow&lt;T, R&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;T, R&gt; Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/280.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Equals Method (Triple&lt;T0, T1, T2&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Equals Method (Triple&lt;T0, T1, T2&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest Triple equality element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Triple&lt;T0, T1, T2&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Triple to test for equality.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/281.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Triple&lt;T0, T1, T2&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Triple&lt;T0, T1, T2&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/238.html\">Triple&lt;T0, T1, T2&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if objects are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/282.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies a type constraint that normally C# would not be able to enforce.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/241.html\">TypeConstraint&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/283.html\">TypeConstraint</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/284.html\">operator implicit</a></td>\r\n<td>Implicitly convert a value of type <span class=\"Code\">T</span> to a TypeConstraint.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/285.html\">Value</a></td>\r\n<td>Extract the encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/283.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/241.html\">TypeConstraint&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected TypeConstraint ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/284.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T&gt;.operator implicit Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T&gt;.operator implicit Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a value of type <span class=\"Code\">T</span> to a TypeConstraint.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/241.html\">TypeConstraint&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator TypeConstraint&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/285.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtract the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/241.html\">TypeConstraint&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/286.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T, TBase&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T, TBase&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies a subtyping type constraint relationship. You use this constraint\r\n            primarily when compiling with other code that specifies ITypeConstraint.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/240.html\">TypeConstraint&lt;T, TBase&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/287.html\">TypeConstraint</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/288.html\">operator implicit</a></td>\r\n<td>Implicitly convert a value of type <span class=\"Code\">T</span> to a TypeConstraint.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/289.html\">Value</a></td>\r\n<td>Extract the encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/287.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T, TBase&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T, TBase&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/240.html\">TypeConstraint&lt;T, TBase&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected TypeConstraint ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/288.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T, TBase&gt;.operator implicit Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T, TBase&gt;.operator implicit Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a value of type <span class=\"Code\">T</span> to a TypeConstraint.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/240.html\">TypeConstraint&lt;T, TBase&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator TypeConstraint&lt;T, TBase&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/289.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>TypeConstraint&lt;T, TBase&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">TypeConstraint&lt;T, TBase&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtract the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/240.html\">TypeConstraint&lt;T, TBase&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/29.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functions on arrows.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/30.html\">Loop&lt;T, U, R, V&gt;</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/31.html\">Return&lt;R&gt;</a></td>\r\n<td>Overloaded. Return an arrow for a zero-argument computation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/32.html\">Return&lt;T, R&gt;</a></td>\r\n<td>Return an arrow from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/33.html\">Run&lt;R&gt;</a></td>\r\n<td>Run the computation with the given input.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/34.html\">Run&lt;T, R&gt;</a></td>\r\n<td>Run the computation with the given input.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/35.html\">Run&lt;T, U, R&gt;</a></td>\r\n<td>Run the computation with the given input.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/290.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Doubles Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Doubles Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Double.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/218.html\">Doubles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/291.html\">Bound</a></td>\r\n<td>Bound the given Double by the upper and lower values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/292.html\">UpTo</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/291.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Doubles.Bound Method (double, double, double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Doubles.Bound Method (double, double, double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBound the given Double by the upper and lower values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/218.html\">Doubles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static double Bound (\n        double <i>value</i>,\n        double <i>min</i>,\n        double <i>max</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to bound.\r\n</div>\r\n<div class=\"CommentParameterName\">min</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower inclusive bound.\r\n</div>\r\n<div class=\"CommentParameterName\">max</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper inclusive bound.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">value</span> if <span class=\"Code\">min</span> &lt;= <span class=\"Code\">value</span> &lt;= <span class=\"Code\">max</span>,\r\n            or <span class=\"Code\">min</span> or <span class=\"Code\">max</span> if <span class=\"Code\">value</span> is out of that range.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/292.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Doubles.UpTo Method (double, double, double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Doubles.UpTo Method (double, double, double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/218.html\">Doubles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;double&gt; UpTo (\n        double <i>start</i>,\n        double <i>end</i>,\n        double <i>step</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">step</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe increment used from <span class=\"Code\">start</span> to <span class=\"Code\">end</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of decimal from [<span class=\"Code\">start</span>, <span class=\"Code\">end</span>).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/293.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to safely trigger events. Triggering events\r\n             using Raise() is both null-safe and thread-safe. Delegates\r\n             are still required to ensure the state they are accessing\r\n             is valid.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/294.html\">Add</a></td>\r\n<td>Overloaded. Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/295.html\">Add&lt;T&gt;</a></td>\r\n<td>Overloaded. Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/296.html\">Add&lt;T, U&gt;</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/297.html\">AddAny&lt;T&gt;</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/298.html\">Clear&lt;T&gt;</a></td>\r\n<td>Clears an event by setting the field to null and returning the previous event contents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/299.html\">Raise</a></td>\r\n<td>Overloaded. Safely raise an Action event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/300.html\">Raise&lt;T&gt;</a></td>\r\n<td>Overloaded. Safely raise an Action event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/301.html\">Raise&lt;T, U&gt;</a></td>\r\n<td>Safely raise an Action event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/302.html\">Raise&lt;T, U, V&gt;</a></td>\r\n<td>Safely raise an Action event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/303.html\">Raise&lt;T, U, V, W&gt;</a></td>\r\n<td>Safely raise an Action event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/304.html\">RaiseAny</a></td>\r\n<td>Safely raise any event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/305.html\">Remove</a></td>\r\n<td>Overloaded. Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/306.html\">Remove&lt;T&gt;</a></td>\r\n<td>Overloaded. Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/307.html\">Remove&lt;T, U&gt;</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/308.html\">RemoveAny&lt;T&gt;</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/294.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/313.html\">Events.Add (ref EventHandler, EventHandler)</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/314.html\">Events.Add (ref Action, Action)</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/295.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/315.html\">Events.Add&lt;T&gt; (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/316.html\">Events.Add&lt;T&gt; (ref Action&lt;T&gt;, Action&lt;T&gt;)</a></td>\r\n<td>Add <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/296.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add&lt;T, U&gt; Method (ref Action&lt;T, U&gt;, Action&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add&lt;T, U&gt; Method (ref Action&lt;T, U&gt;, Action&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Add&lt;T, U&gt; (\n        ref Action&lt;T, U&gt; <i>del</i>,\n        Action&lt;T, U&gt; <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/297.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.AddAny&lt;T&gt; Method (ref T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.AddAny&lt;T&gt; Method (ref T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void AddAny&lt;T&gt; (\n        ref T <i>del</i>,\n        T <i>newHandler</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/298.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Clear&lt;T&gt; Method (ref T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Clear&lt;T&gt; Method (ref T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nClears an event by setting the field to null and returning the previous event contents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Clear&lt;T&gt; (\n        ref T <i>del</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the delegate.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe previous event contents.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/299.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/309.html\">Events.Raise (EventHandler, object, EventArgs)</a></td>\r\n<td>Safely raise an EventHandler event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/310.html\">Events.Raise (Action)</a></td>\r\n<td>Safely raise an Action event.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/3.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Contracts Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Contracts Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      An API matching Microsoft's Code Contracts.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a></td>\r\n<td>\r\n        Contract pre-conditions, post-conditions, invariants matching Microsoft's Code Contracts API.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/30.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Loop&lt;T, U, R, V&gt; Method (Arrow&lt;Pair&lt;T, U&gt;, Pair&lt;R, V&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Loop&lt;T, U, R, V&gt; Method (Arrow&lt;Pair&lt;T, U&gt;, Pair&lt;R, V&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Arrow&lt;T, R&gt; Loop&lt;T, U, R, V&gt; (\n        Arrow&lt;Pair&lt;T, U&gt;, Pair&lt;R, V&gt;&gt; <i>arrow</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arrow</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/300.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/311.html\">Events.Raise&lt;T&gt; (EventHandler&lt;T&gt;, object, T)</a></td>\r\n<td>Safely raise an EventHandler event.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/312.html\">Events.Raise&lt;T&gt; (Action&lt;T&gt;, T)</a></td>\r\n<td>Safely raise an Action event.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/301.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T, U&gt; Method (Action&lt;T, U&gt;, T, U)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T, U&gt; Method (Action&lt;T, U&gt;, T, U)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise&lt;T, U&gt; (\n        Action&lt;T, U&gt; <i>del</i>,\n        T <i>arg0</i>,\n        U <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument to the event.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second event arg.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/302.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;, T, U, V)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;, T, U, V)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise&lt;T, U, V&gt; (\n        Action&lt;T, U, V&gt; <i>del</i>,\n        T <i>arg0</i>,\n        U <i>arg1</i>,\n        V <i>arg2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument to the event.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third event arg.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/303.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T, U, V, W&gt; Method (Action&lt;T, U, V, W&gt;, T, U, V, W)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T, U, V, W&gt; Method (Action&lt;T, U, V, W&gt;, T, U, V, W)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise&lt;T, U, V, W&gt; (\n        Action&lt;T, U, V, W&gt; <i>del</i>,\n        T <i>arg0</i>,\n        U <i>arg1</i>,\n        V <i>arg2</i>,\n        W <i>arg3</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument to the event.\r\n</div>\r\n<div class=\"CommentParameterName\">W</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument to the event.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third event arg.\r\n</div>\r\n<div class=\"CommentParameterName\">arg3</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth event arg.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/304.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.RaiseAny Method (Delegate, object[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.RaiseAny Method (Delegate, object[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise any event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void RaiseAny (\n        Delegate <i>del</i>,\n        params object[] <i>args</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe multicast delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">args</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe arguments to the delegate.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/305.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/317.html\">Events.Remove (ref EventHandler, EventHandler)</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/318.html\">Events.Remove (ref Action, Action)</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/306.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/319.html\">Events.Remove&lt;T&gt; (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/320.html\">Events.Remove&lt;T&gt; (ref Action&lt;T&gt;, Action&lt;T&gt;)</a></td>\r\n<td>Remove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/307.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove&lt;T, U&gt; Method (ref Action&lt;T, U&gt;, Action&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove&lt;T, U&gt; Method (ref Action&lt;T, U&gt;, Action&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Remove&lt;T, U&gt; (\n        ref Action&lt;T, U&gt; <i>del</i>,\n        Action&lt;T, U&gt; <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/308.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.RemoveAny&lt;T&gt; Method (ref T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.RemoveAny&lt;T&gt; Method (ref T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void RemoveAny&lt;T&gt; (\n        ref T <i>del</i>,\n        T <i>newHandler</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/309.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise Method (EventHandler, object, EventArgs)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise Method (EventHandler, object, EventArgs)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an EventHandler event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise (\n        EventHandler <i>del</i>,\n        object <i>sender</i>,\n        EventArgs <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">sender</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object triggering the event.\r\n</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe event args.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/31.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Return&lt;R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Return&lt;R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an arrow for a zero-argument computation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/36.html\">Arrow.Return&lt;R&gt; (Func&lt;R&gt;)</a></td>\r\n<td>Return an arrow for a zero-argument computation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/37.html\">Arrow.Return&lt;T&gt; (Action&lt;T&gt;)</a></td>\r\n<td>Return an arrow for a computation that returns no value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/310.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise Method (Action)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise Method (Action)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise (\n        Action <i>del</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/311.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T&gt; Method (EventHandler&lt;T&gt;, object, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T&gt; Method (EventHandler&lt;T&gt;, object, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an EventHandler event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise&lt;T&gt; (\n        EventHandler&lt;T&gt; <i>del</i>,\n        object <i>sender</i>,\n        T <i>e</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: EventArgs</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the EventArgs.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">sender</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object triggering the event.\r\n</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe event args.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/312.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Raise&lt;T&gt; Method (Action&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Raise&lt;T&gt; Method (Action&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSafely raise an Action event.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Raise&lt;T&gt; (\n        Action&lt;T&gt; <i>del</i>,\n        T <i>arg0</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the argument to the event.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the event.\r\n</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first event arg.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/313.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add Method (ref EventHandler, EventHandler)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add Method (ref EventHandler, EventHandler)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Add (\n        ref EventHandler <i>del</i>,\n        EventHandler <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/314.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add Method (ref Action, Action)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add Method (ref Action, Action)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Add (\n        ref Action <i>del</i>,\n        Action <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/315.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add&lt;T&gt; Method (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add&lt;T&gt; Method (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Add&lt;T&gt; (\n        ref EventHandler&lt;T&gt; <i>del</i>,\n        EventHandler&lt;T&gt; <i>newHandler</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: EventArgs</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/316.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Add&lt;T&gt; Method (ref Action&lt;T&gt;, Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Add&lt;T&gt; Method (ref Action&lt;T&gt;, Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdd <span class=\"Code\">newHandler</span> to the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Add&lt;T&gt; (\n        ref Action&lt;T&gt; <i>del</i>,\n        Action&lt;T&gt; <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to add.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/317.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove Method (ref EventHandler, EventHandler)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove Method (ref EventHandler, EventHandler)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Remove (\n        ref EventHandler <i>del</i>,\n        EventHandler <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/318.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove Method (ref Action, Action)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove Method (ref Action, Action)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Remove (\n        ref Action <i>del</i>,\n        Action <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/319.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove&lt;T&gt; Method (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove&lt;T&gt; Method (ref EventHandler&lt;T&gt;, EventHandler&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Remove&lt;T&gt; (\n        ref EventHandler&lt;T&gt; <i>del</i>,\n        EventHandler&lt;T&gt; <i>newHandler</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: EventArgs</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nType of event args.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/32.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Return&lt;T, R&gt; Method (Func&lt;T, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Return&lt;T, R&gt; Method (Func&lt;T, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an arrow from <span class=\"Code\">T</span> to <span class=\"Code\">R</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Arrow&lt;T, R&gt; Return&lt;T, R&gt; (\n        Func&lt;T, R&gt; <i>thunk</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input type.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">thunk</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the computation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation arrow.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/320.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Events.Remove&lt;T&gt; Method (ref Action&lt;T&gt;, Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Events.Remove&lt;T&gt; Method (ref Action&lt;T&gt;, Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove <span class=\"Code\">newHandler</span> from the list of events <span class=\"Code\">del</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/224.html\">Events</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Remove&lt;T&gt; (\n        ref Action&lt;T&gt; <i>del</i>,\n        Action&lt;T&gt; <i>newHandler</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">del</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reference to the local <span class=\"PseudoLink\">System.Delegate</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">newHandler</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to remove.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/321.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn empty/void value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/322.html\">Equals</a></td>\r\n<td>Equality test for Void.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/323.html\">GetHashCode</a></td>\r\n<td>Returns the hash code for a Void value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/324.html\">operator !=</a></td>\r\n<td>Inequality on two voids is always false.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/325.html\">operator ==</a></td>\r\n<td>Equality on two voids is always true.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/326.html\">ToString</a></td>\r\n<td>Convert Void to a string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/322.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEquality test for Void.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nObject to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true of <span class=\"Code\">obj</span> is Void, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/323.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the hash code for a Void value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHash code for Void.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/324.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty.operator != Method (Empty, Empty)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty.operator != Method (Empty, Empty)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInequality on two voids is always false.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Empty <i>left</i>,\n        Empty <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nLeft hand side.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nRight hand side.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns false.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/325.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty.operator == Method (Empty, Empty)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty.operator == Method (Empty, Empty)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEquality on two voids is always true.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Empty <i>left</i>,\n        Empty <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nLeft hand side.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nRight hand side.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/326.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Empty.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Empty.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert Void to a string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/222.html\">Empty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns a string representation of a Unit value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/327.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis class encapsulates a non-null reference. An of this class instance serves as evidence\r\n            that the encapsulated reference is not null.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/328.html\">NonNull</a></td>\r\n<td>Construct an assuredy non-null reference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/329.html\">Equals</a></td>\r\n<td>Overloaded. Compare encapsulated values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/330.html\">GetHashCode</a></td>\r\n<td>Return the hash code of the encapsulated value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/331.html\">operator !=</a></td>\r\n<td>Overloaded. Compares two NonNull values for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/332.html\">operator ==</a></td>\r\n<td>Overloaded. Compares two NonNull values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/333.html\">operator implicit</a></td>\r\n<td>Implicit conversion back to a type T.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/334.html\">ToString</a></td>\r\n<td>Returns a string representation of the encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/335.html\">Value</a></td>\r\n<td>Retrieves the encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/328.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an assuredy non-null reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public NonNull (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/329.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare encapsulated values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/336.html\">NonNull&lt;T&gt;.Equals (T)</a></td>\r\n<td>Compare encapsulated values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/337.html\">NonNull&lt;T&gt;.Equals (NonNull&lt;T&gt;)</a></td>\r\n<td>Compare NonNull values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/338.html\">NonNull&lt;T&gt;.Equals (object)</a></td>\r\n<td>Compares equality of the encapsulated value and the given value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/33.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Run&lt;R&gt; Method (Arrow&lt;Empty, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Run&lt;R&gt; Method (Arrow&lt;Empty, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRun the computation with the given input.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static R Run&lt;R&gt; (\n        Arrow&lt;Empty, R&gt; <i>arrow</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arrow</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to run.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe result of the computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/330.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the hash code of the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe hash code.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/331.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator != Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator != Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two NonNull values for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/342.html\">NonNull&lt;T&gt;.operator != (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</a></td>\r\n<td>Compares two NonNull values for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/343.html\">NonNull&lt;T&gt;.operator != (NonNull&lt;T&gt;, T)</a></td>\r\n<td>Compares two objects for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/344.html\">NonNull&lt;T&gt;.operator != (T, NonNull&lt;T&gt;)</a></td>\r\n<td>Compares two objects for inequality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/332.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator == Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator == Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two NonNull values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/339.html\">NonNull&lt;T&gt;.operator == (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</a></td>\r\n<td>Compares two NonNull values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/340.html\">NonNull&lt;T&gt;.operator == (NonNull&lt;T&gt;, T)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/341.html\">NonNull&lt;T&gt;.operator == (T, NonNull&lt;T&gt;)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/333.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator implicit Method (NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator implicit Method (NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicit conversion back to a type T.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator T (\n        NonNull&lt;T&gt; <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe NonNull value to convert back to T.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated T value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/334.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a string representation of the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns a string representation of the encapsulated value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/335.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRetrieves the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/336.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.Equals Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.Equals Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare encapsulated values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        T <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if values are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/337.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.Equals Method (NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.Equals Method (NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare NonNull values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        NonNull&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if values are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/338.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares equality of the encapsulated value and the given value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the values are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/339.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator == Method (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator == Method (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two NonNull values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        NonNull&lt;T&gt; <i>n1</i>,\n        NonNull&lt;T&gt; <i>n2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">n1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first NonNull.\r\n</div>\r\n<div class=\"CommentParameterName\">n2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second NonNull.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the NonNulls are equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/34.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Run&lt;T, R&gt; Method (Arrow&lt;T, R&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Run&lt;T, R&gt; Method (Arrow&lt;T, R&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRun the computation with the given input.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static R Run&lt;T, R&gt; (\n        Arrow&lt;T, R&gt; <i>arrow</i>,\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arrow</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to run.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe result of the computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/340.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator == Method (NonNull&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator == Method (NonNull&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        NonNull&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/341.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator == Method (T, NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator == Method (T, NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        T <i>left</i>,\n        NonNull&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/342.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator != Method (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator != Method (NonNull&lt;T&gt;, NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two NonNull values for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        NonNull&lt;T&gt; <i>n1</i>,\n        NonNull&lt;T&gt; <i>n2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">n1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first NonNull.\r\n</div>\r\n<div class=\"CommentParameterName\">n2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second NonNull.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the NonNulls are not equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/343.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator != Method (NonNull&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator != Method (NonNull&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        NonNull&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/344.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>NonNull&lt;T&gt;.operator != Method (T, NonNull&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">NonNull&lt;T&gt;.operator != Method (T, NonNull&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/230.html\">NonNull&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        T <i>left</i>,\n        NonNull&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/345.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Null Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Null Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvenience functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/231.html\">Null</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/346.html\">NonNull&lt;T&gt;</a></td>\r\n<td>Construct a new non-null instance.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/346.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Null.NonNull&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Null.NonNull&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new non-null instance.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/231.html\">Null</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static NonNull&lt;T&gt; NonNull&lt;T&gt; (\n        T <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the non-null reference.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reference to check for null.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn assuredly non-null reference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/347.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MetaExtensions Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MetaExtensions Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nVarious simple meta-programming extensions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/229.html\">MetaExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/348.html\">MemberName&lt;T&gt;</a></td>\r\n<td>Exploits lambda expressions to ensure the field or property name returned as a\r\n            string is valid.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/348.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MetaExtensions.MemberName&lt;T&gt; Method (Expression&lt;Func&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MetaExtensions.MemberName&lt;T&gt; Method (Expression&lt;Func&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExploits lambda expressions to ensure the field or property name returned as a\r\n            string is valid.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/229.html\">MetaExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string MemberName&lt;T&gt; (\n        Expression&lt;Func&lt;T&gt;&gt; <i>property</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the field or property.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">property</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA lambda expression naming a field or property.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe name of the field or property.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/349.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, <span class=\"Code\">TThird</span> or\r\n            <span class=\"Code\">TFourth</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/350.html\">Either</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/351.html\">Do</a></td>\r\n<td>Perform an action on the encapsulated value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/352.html\">First</a></td>\r\n<td>Returns an instance initialized to <span class=\"Code\">TFirst</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/353.html\">Fourth</a></td>\r\n<td>Return an Either encapsulating a value of type <span class=\"Code\">TFourth</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/354.html\">operator explicit</a></td>\r\n<td>Overloaded. An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/355.html\">operator implicit</a></td>\r\n<td>Overloaded. A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/356.html\">Second</a></td>\r\n<td>Returns an instance initialized to Second.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/357.html\">Select</a></td>\r\n<td>Overloaded. If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/358.html\">Select&lt;TReturn&gt;</a></td>\r\n<td>Transform the encapsulated value into a <span class=\"Code\">TReturn</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/359.html\">Third</a></td>\r\n<td>Return an Either encapsulating a value of type <span class=\"Code\">TThird</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/360.html\">IsFirst</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/361.html\">IsFourth</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TFourth</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/362.html\">IsSecond</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/363.html\">IsThird</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TThird</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/35.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Run&lt;T, U, R&gt; Method (Arrow&lt;Pair&lt;T, U&gt;, R&gt;, T, U)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Run&lt;T, U, R&gt; Method (Arrow&lt;Pair&lt;T, U&gt;, R&gt;, T, U)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRun the computation with the given input.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static R Run&lt;T, U, R&gt; (\n        Arrow&lt;Pair&lt;T, U&gt;, R&gt; <i>arrow</i>,\n        T <i>arg0</i>,\n        U <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arrow</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computation to run.\r\n</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe result of the computation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/350.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Either ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/351.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;, Action&lt;TThird&gt;, Action&lt;TFourth&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;, Action&lt;TThird&gt;, Action&lt;TFourth&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an action on the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Do (\n        Action&lt;TFirst&gt; <i>first</i>,\n        Action&lt;TSecond&gt; <i>second</i>,\n        Action&lt;TThird&gt; <i>third</i>,\n        Action&lt;TFourth&gt; <i>fourth</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TThird</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFourth</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/352.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.First Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.First Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instance initialized to <span class=\"Code\">TFirst</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird, TFourth&gt; First (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/353.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Fourth Method (TFourth)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Fourth Method (TFourth)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an Either encapsulating a value of type <span class=\"Code\">TFourth</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird, TFourth&gt; Fourth (\n        TFourth <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to encapsulate.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA newly initialized Either value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/354.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/368.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/369.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/370.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/371.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/355.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/364.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit (TFirst)</a></td>\r\n<td>A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/365.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit (TSecond)</a></td>\r\n<td>A value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/366.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit (TThird)</a></td>\r\n<td>A value of type <span class=\"Code\">TThird</span> can be implicitly converted to Third.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/367.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit (TFourth)</a></td>\r\n<td>A value of type <span class=\"Code\">TFourth</span> can be implicitly converted to Fourth.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/356.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Second Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Second Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instance initialized to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird, TFourth&gt; Second (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/357.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/372.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select (TFirst)</a></td>\r\n<td>If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/373.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select (TSecond)</a></td>\r\n<td>If the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/374.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select (TThird)</a></td>\r\n<td>If the type is <span class=\"Code\">TThird</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/375.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select (TFourth)</a></td>\r\n<td>If the type is <span class=\"Code\">TFourth</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/358.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;, Func&lt;TThird, TReturn&gt;, Func&lt;TFourth, TReturn&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;, Func&lt;TThird, TReturn&gt;, Func&lt;TFourth, TReturn&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransform the encapsulated value into a <span class=\"Code\">TReturn</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TReturn Select&lt;TReturn&gt; (\n        Func&lt;TFirst, TReturn&gt; <i>first</i>,\n        Func&lt;TSecond, TReturn&gt; <i>second</i>,\n        Func&lt;TThird, TReturn&gt; <i>third</i>,\n        Func&lt;TFourth, TReturn&gt; <i>fourth</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TReturn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to return.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TThird</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFourth</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/359.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Third Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Third Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an Either encapsulating a value of type <span class=\"Code\">TThird</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird, TFourth&gt; Third (\n        TThird <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to encapsulate.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA newly initialized Either value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/36.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Return&lt;R&gt; Method (Func&lt;R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Return&lt;R&gt; Method (Func&lt;R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an arrow for a zero-argument computation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Arrow&lt;Empty, R&gt; Return&lt;R&gt; (\n        Func&lt;R&gt; <i>thunk</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">thunk</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the computation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation arrow.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/360.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsFirst Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsFirst Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsFirst { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/361.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsFourth Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsFourth Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TFourth</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsFourth { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/362.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsSecond Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsSecond Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsSecond { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/363.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsThird Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.IsThird Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TThird</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsThird { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/364.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird, TFourth&gt; (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/365.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird, TFourth&gt; (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/366.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TThird</span> can be implicitly converted to Third.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird, TFourth&gt; (\n        TThird <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Third.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/367.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TFourth)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator implicit Method (TFourth)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFourth</span> can be implicitly converted to Fourth.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird, TFourth&gt; (\n        TFourth <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Third.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/368.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TFirst (\n        Either&lt;TFirst, TSecond, TThird, TFourth&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/369.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TSecond (\n        Either&lt;TFirst, TSecond, TThird, TFourth&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/37.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrow.Return&lt;T&gt; Method (Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrow.Return&lt;T&gt; Method (Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an arrow for a computation that returns no value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/14.html\">Arrow</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/13.html\">Sasa.Arrow</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/2.html\">Sasa.Arrow</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Arrow&lt;T, Empty&gt; Return&lt;T&gt; (\n        Action&lt;T&gt; <i>thunk</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe argument type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">thunk</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate representing the computation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA computation arrow.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/370.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TThird (\n        Either&lt;TFirst, TSecond, TThird, TFourth&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/371.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird, TFourth&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TFourth (\n        Either&lt;TFirst, TSecond, TThird, TFourth&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/372.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TFirst Select (\n        TFirst <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TFirst</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/373.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TSecond Select (\n        TSecond <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TSecond</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/374.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TThird</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TThird Select (\n        TThird <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TThird</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/375.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TFourth)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;.Select Method (TFourth)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFourth</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/219.html\">Either&lt;TFirst, TSecond, TThird, TFourth&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TFourth Select (\n        TFourth <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TFourth</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/376.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Singles Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Singles Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Single.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/237.html\">Singles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/377.html\">Bound</a></td>\r\n<td>Bound the given Single by the upper and lower values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/378.html\">UpTo</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/377.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Singles.Bound Method (float, float, float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Singles.Bound Method (float, float, float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBound the given Single by the upper and lower values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/237.html\">Singles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static float Bound (\n        float <i>value</i>,\n        float <i>min</i>,\n        float <i>max</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to bound.\r\n</div>\r\n<div class=\"CommentParameterName\">min</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower inclusive bound.\r\n</div>\r\n<div class=\"CommentParameterName\">max</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper inclusive bound.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">value</span> if <span class=\"Code\">min</span> &lt;= <span class=\"Code\">value</span> &lt;= <span class=\"Code\">max</span>,\r\n            or <span class=\"Code\">min</span> or <span class=\"Code\">max</span> if <span class=\"Code\">value</span> is out of that range.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/378.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Singles.UpTo Method (float, float, float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Singles.UpTo Method (float, float, float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/237.html\">Singles</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;float&gt; UpTo (\n        float <i>start</i>,\n        float <i>end</i>,\n        float <i>step</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">step</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe increment used from <span class=\"Code\">start</span> to <span class=\"Code\">end</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of decimal from [<span class=\"Code\">start</span>, <span class=\"Code\">end</span>).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/379.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            <span class=\"Code\">TSecond</span>, or <span class=\"Code\">TThird</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/380.html\">Either</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/381.html\">Do</a></td>\r\n<td>Perform an action on the encapsulated value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/382.html\">First</a></td>\r\n<td>Returns an instances initialized to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/383.html\">operator explicit</a></td>\r\n<td>Overloaded. An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/384.html\">operator implicit</a></td>\r\n<td>Overloaded. A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/385.html\">Second</a></td>\r\n<td>Returns an instances initialized to Second.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/386.html\">Select</a></td>\r\n<td>Overloaded. If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/387.html\">Select&lt;TReturn&gt;</a></td>\r\n<td>Transform the encapsulated value into a <span class=\"Code\">TReturn</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/388.html\">Third</a></td>\r\n<td>Return an Either encapsulating a type T.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/389.html\">IsFirst</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/390.html\">IsSecond</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/391.html\">IsThird</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TThird</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/38.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>System.Diagnostics.Contracts Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">System.Diagnostics.Contracts Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Contract pre-conditions, post-conditions, invariants matching Microsoft's Code Contracts API.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/39.html\">Contract</a></td>\r\n<td>Microsoft-compatible Contracts class.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/40.html\">Contract.AssertException</a></td>\r\n<td>Exception thrown by Assert* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/41.html\">Contract.AssumeException</a></td>\r\n<td>Exception thrown by Assume* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/42.html\">Contract.EnsuresException</a></td>\r\n<td>Exception thrown by Ensures* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/43.html\">Contract.InvariantException</a></td>\r\n<td>Exception thrown by Invariant* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/44.html\">Contract.RequiresException</a></td>\r\n<td>Exception thrown by Requires* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/45.html\">ContractInvariantMethodAttribute</a></td>\r\n<td>Marks a method as an object invariant. When IL rewriting is supported,\r\n            this method will be called at the end of every public method and getter.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/46.html\">PureAttribute</a></td>\r\n<td>Marks a method as being \"pure\", with no side-effects.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/47.html\">RuntimeContractsAttribute</a></td>\r\n<td>This assembly-level attribute is added to an assembly after the\r\n            rewriter has processed it.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/380.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Either ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/381.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;, Action&lt;TThird&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;, Action&lt;TThird&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an action on the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Do (\n        Action&lt;TFirst&gt; <i>first</i>,\n        Action&lt;TSecond&gt; <i>second</i>,\n        Action&lt;TThird&gt; <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TThird</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/382.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.First Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.First Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instances initialized to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird&gt; First (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/383.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/395.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/396.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/397.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit (Either&lt;TFirst, TSecond, TThird&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/384.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/392.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit (TFirst)</a></td>\r\n<td>A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/393.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit (TSecond)</a></td>\r\n<td>A value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/394.html\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit (TThird)</a></td>\r\n<td>A value of type <span class=\"Code\">TThird</span> can be implicitly converted to Third.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/385.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Second Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Second Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instances initialized to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird&gt; Second (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/386.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Select Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Select Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/398.html\">Either&lt;TFirst, TSecond, TThird&gt;.Select (TFirst)</a></td>\r\n<td>If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/399.html\">Either&lt;TFirst, TSecond, TThird&gt;.Select (TSecond)</a></td>\r\n<td>If the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/400.html\">Either&lt;TFirst, TSecond, TThird&gt;.Select (TThird)</a></td>\r\n<td>If the type is <span class=\"Code\">TThird</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/387.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;, Func&lt;TThird, TReturn&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;, Func&lt;TThird, TReturn&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransform the encapsulated value into a <span class=\"Code\">TReturn</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TReturn Select&lt;TReturn&gt; (\n        Func&lt;TFirst, TReturn&gt; <i>first</i>,\n        Func&lt;TSecond, TReturn&gt; <i>second</i>,\n        Func&lt;TThird, TReturn&gt; <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TReturn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to return.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TThird</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/388.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Third Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Third Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an Either encapsulating a type T.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond, TThird&gt; Third (\n        TThird <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to encapsulate.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA newly initialized Either value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/389.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.IsFirst Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.IsFirst Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsFirst { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/39.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMicrosoft-compatible Contracts class.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Contract </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/48.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/390.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.IsSecond Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.IsSecond Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsSecond { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/391.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.IsThird Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.IsThird Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TThird</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsThird { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/392.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird&gt; (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/393.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird&gt; (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/394.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator implicit Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TThird</span> can be implicitly converted to Third.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond, TThird&gt; (\n        TThird <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Third.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/395.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TFirst (\n        Either&lt;TFirst, TSecond, TThird&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/396.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TSecond (\n        Either&lt;TFirst, TSecond, TThird&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/397.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.operator explicit Method (Either&lt;TFirst, TSecond, TThird&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TThird (\n        Either&lt;TFirst, TSecond, TThird&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/398.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TFirst Select (\n        TFirst <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TFirst</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/399.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TSecond Select (\n        TSecond <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TSecond</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/4.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Core Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Core Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Extensions for concurrency, I/O, and more.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/91.html\">Sasa</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/1/92.html\">Sasa.IO</a></td>\r\n<td>\r\n        Extensions for I/O and file handling.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/40.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssertException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssertException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Assert* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class AssertException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/79.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/400.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TThird)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond, TThird&gt;.Select Method (TThird)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TThird</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/220.html\">Either&lt;TFirst, TSecond, TThird&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TThird Select (\n        TThird <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TThird</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/401.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>CodeGen Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">CodeGen Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functinos for code generation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/216.html\">CodeGen</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/402.html\">Function&lt;T&gt;</a></td>\r\n<td>Create a dynamic method.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/402.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>CodeGen.Function&lt;T&gt; Method (Type, string, MethodAttributes, bool, Action&lt;ILGenerator&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">CodeGen.Function&lt;T&gt; Method (Type, string, MethodAttributes, bool, Action&lt;ILGenerator&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreate a dynamic method.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/216.html\">CodeGen</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Function&lt;T&gt; (\n        Type <i>type</i>,\n        string <i>methodName</i>,\n        MethodAttributes <i>attributes</i>,\n        bool <i>saveAssembly</i>,\n        Action&lt;ILGenerator&gt; <i>generate</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the dynamic method to create.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">type</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to which this delegate should be a member.\r\n</div>\r\n<div class=\"CommentParameterName\">methodName</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe name of the delegate's method.\r\n</div>\r\n<div class=\"CommentParameterName\">attributes</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe method attributes.\r\n</div>\r\n<div class=\"CommentParameterName\">saveAssembly</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFlag indicating whether the generated code should be saved to a dll.\r\n</div>\r\n<div class=\"CommentParameterName\">generate</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA call back that performs the code generation.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn dynamically created instance of the given delegate type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/403.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to System.Type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/404.html\">IsGenericTypeInstance</a></td>\r\n<td>Checks that the type is a generic type with all generic parameters specified.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/405.html\">ShortGenericType</a></td>\r\n<td>Overloaded. Generates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/406.html\">ShortName</a></td>\r\n<td>Return the shortest string required to identify a type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/407.html\">Subtypes</a></td>\r\n<td>Returns true if the given types are in a subtyping relationship.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/408.html\">Subtypes&lt;T&gt;</a></td>\r\n<td>Returns true if the given types are in a subtyping relationship.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/409.html\">Subtypes&lt;TSub, TSup&gt;</a></td>\r\n<td>Returns true if the given types are in a subtyping relationship.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/410.html\">ToShortName</a></td>\r\n<td>Return the shortest string required to identify a type.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/404.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.IsGenericTypeInstance Method (Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.IsGenericTypeInstance Method (Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks that the type is a generic type with all generic parameters specified.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool IsGenericTypeInstance (\n        Type <i>typ</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">typ</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to test.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the type is instaniated with all generic parameters, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/405.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.ShortGenericType Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.ShortGenericType Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/411.html\">Types.ShortGenericType (Type, Type[], StringBuilder)</a></td>\r\n<td>Generates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/412.html\">Types.ShortGenericType (Type, Type[])</a></td>\r\n<td>Generates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/406.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.ShortName Method (Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.ShortName Method (Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the shortest string required to identify a type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ShortName (\n        Type <i>typ</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">typ</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to format as a string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/407.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.Subtypes Method (Type, Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.Subtypes Method (Type, Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the given types are in a subtyping relationship.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Subtypes (\n        Type <i>subtype</i>,\n        Type <i>supertype</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">subtype</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe subtype.\r\n</div>\r\n<div class=\"CommentParameterName\">supertype</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe potential supertype.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if <span class=\"Code\">subtype</span> is a subtype of <span class=\"Code\">supertype</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/408.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.Subtypes&lt;T&gt; Method (Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.Subtypes&lt;T&gt; Method (Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the given types are in a subtyping relationship.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Subtypes&lt;T&gt; (\n        Type <i>subtype</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe potential supertype.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">subtype</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe subtype.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if <span class=\"Code\">subtype</span> is a subtype of <span class=\"Code\">T</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/409.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.Subtypes&lt;TSub, TSup&gt; Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.Subtypes&lt;TSub, TSup&gt; Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the given types are in a subtyping relationship.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Subtypes&lt;TSub, TSup&gt; ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TSub</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe subtype.\r\n</div>\r\n<div class=\"CommentParameterName\">TSup</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe potential supertype.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if <span class=\"Code\">TSub</span> is a subtype of <span class=\"Code\">TSup</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/41.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssumeException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssumeException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Assume* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class AssumeException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/77.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/410.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.ToShortName Method (Type, StringBuilder)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.ToShortName Method (Type, StringBuilder)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the shortest string required to identify a type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void ToShortName (\n        Type <i>typ</i>,\n        StringBuilder <i>sb</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">typ</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to format as a string.\r\n</div>\r\n<div class=\"CommentParameterName\">sb</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe StringBuilder to which the type string should be written.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/411.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.ShortGenericType Method (Type, Type[], StringBuilder)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.ShortGenericType Method (Type, Type[], StringBuilder)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void ShortGenericType (\n        Type <i>typ</i>,\n        Type[] <i>genericArguments</i>,\n        StringBuilder <i>sb</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">typ</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe generic type definition.\r\n</div>\r\n<div class=\"CommentParameterName\">genericArguments</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe generic type arguments.\r\n</div>\r\n<div class=\"CommentParameterName\">sb</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe StringBuilder to which the type string should be written.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/412.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types.ShortGenericType Method (Type, Type[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types.ShortGenericType Method (Type, Type[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates an abbreviated type name for a generic type definition with the specified\r\n            generic type arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/242.html\">Types</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ShortGenericType (\n        Type <i>typ</i>,\n        Type[] <i>genericArguments</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">typ</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe generic type definition.\r\n</div>\r\n<div class=\"CommentParameterName\">genericArguments</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe generic type arguments.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn abbreviated generic type name.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/413.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to System.Threading.Interlocked.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/414.html\">Set&lt;T&gt;</a></td>\r\n<td>Overloaded. Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/415.html\">SetFailed&lt;T&gt;</a></td>\r\n<td>Overloaded. Perform an atomic set.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/414.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.Set&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.Set&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/416.html\">Atomics.Set&lt;T&gt; (ref T, T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/417.html\">Atomics.Set&lt;T&gt; (ref T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/418.html\">Atomics.Set&lt;T&gt; (Ref&lt;T&gt;, T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/419.html\">Atomics.Set&lt;T&gt; (Ref&lt;T&gt;, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/415.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.SetFailed&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.SetFailed&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/420.html\">Atomics.SetFailed&lt;T&gt; (ref T, T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/421.html\">Atomics.SetFailed&lt;T&gt; (ref T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/422.html\">Atomics.SetFailed&lt;T&gt; (Ref&lt;T&gt;, T, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/423.html\">Atomics.SetFailed&lt;T&gt; (Ref&lt;T&gt;, T)</a></td>\r\n<td>Perform an atomic set.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/416.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.Set&lt;T&gt; Method (ref T, T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.Set&lt;T&gt; Method (ref T, T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Set&lt;T&gt; (\n        ref T <i>slot</i>,\n        T <i>value</i>,\n        T <i>comparand</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentParameterName\">comparand</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current value of the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/417.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.Set&lt;T&gt; Method (ref T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.Set&lt;T&gt; Method (ref T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Set&lt;T&gt; (\n        ref T <i>slot</i>,\n        T <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/418.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.Set&lt;T&gt; Method (Ref&lt;T&gt;, T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.Set&lt;T&gt; Method (Ref&lt;T&gt;, T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Set&lt;T&gt; (\n        Ref&lt;T&gt; <i>slot</i>,\n        T <i>value</i>,\n        T <i>comparand</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentParameterName\">comparand</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current value of the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/419.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.Set&lt;T&gt; Method (Ref&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.Set&lt;T&gt; Method (Ref&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Set&lt;T&gt; (\n        Ref&lt;T&gt; <i>slot</i>,\n        T <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/42.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Ensures* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class EnsuresException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/83.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/420.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.SetFailed&lt;T&gt; Method (ref T, T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.SetFailed&lt;T&gt; Method (ref T, T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool SetFailed&lt;T&gt; (\n        ref T <i>slot</i>,\n        T <i>value</i>,\n        T <i>comparand</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentParameterName\">comparand</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current value of the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/421.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.SetFailed&lt;T&gt; Method (ref T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.SetFailed&lt;T&gt; Method (ref T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool SetFailed&lt;T&gt; (\n        ref T <i>slot</i>,\n        T <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/422.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.SetFailed&lt;T&gt; Method (Ref&lt;T&gt;, T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.SetFailed&lt;T&gt; Method (Ref&lt;T&gt;, T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool SetFailed&lt;T&gt; (\n        Ref&lt;T&gt; <i>slot</i>,\n        T <i>value</i>,\n        T <i>comparand</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentParameterName\">comparand</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe current value of the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/423.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Atomics.SetFailed&lt;T&gt; Method (Ref&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Atomics.SetFailed&lt;T&gt; Method (Ref&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/215.html\">Atomics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool SetFailed&lt;T&gt; (\n        Ref&lt;T&gt; <i>slot</i>,\n        T <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: class</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe slot in which to place the new value.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value to place in the slot.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if successfully updated, false if another thread updated instead.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/424.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTuple convenience functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/425.html\">_&lt;T&gt;</a></td>\r\n<td>A syntactic shortcut to create arrays of values leveraging type inference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/426.html\">_&lt;T, U&gt;</a></td>\r\n<td>Construct a Pair from the given values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/427.html\">_&lt;T, U, V&gt;</a></td>\r\n<td>Construct a Triple from the given values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/428.html\">_&lt;T, U, V, Q&gt;</a></td>\r\n<td>Construct a Quad from the given values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/429.html\">Flatten&lt;T, U, V&gt;</a></td>\r\n<td>Flatten a nested pair of a pair into a Triple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/430.html\">Flatten&lt;T, U, V, Q&gt;</a></td>\r\n<td>Flatten a nested pair of pairs into a Quad.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/431.html\">KV&lt;T, U&gt;</a></td>\r\n<td>Construct a KeyValuePair from the given values.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/425.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple._&lt;T&gt; Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple._&lt;T&gt; Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA syntactic shortcut to create arrays of values leveraging type inference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] _&lt;T&gt; (\n        params T[] <i>values</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">values</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe values to create.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn array of the provided values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/426.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple._&lt;T, U&gt; Method (T, U)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple._&lt;T, U&gt; Method (T, U)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a Pair from the given values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Pair&lt;T, U&gt; _&lt;T, U&gt; (\n        T <i>t</i>,\n        U <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Pair.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/427.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple._&lt;T, U, V&gt; Method (T, U, V)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple._&lt;T, U, V&gt; Method (T, U, V)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a Triple from the given values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Triple&lt;T, U, V&gt; _&lt;T, U, V&gt; (\n        T <i>t</i>,\n        U <i>u</i>,\n        V <i>v</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">v</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Triple.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/428.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple._&lt;T, U, V, Q&gt; Method (T, U, V, Q)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple._&lt;T, U, V, Q&gt; Method (T, U, V, Q)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a Quad from the given values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Quad&lt;T, U, V, Q&gt; _&lt;T, U, V, Q&gt; (\n        T <i>t</i>,\n        U <i>u</i>,\n        V <i>v</i>,\n        Q <i>q</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third type.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">v</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"CommentParameterName\">q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Quad.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/429.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple.Flatten&lt;T, U, V&gt; Method (Pair&lt;Pair&lt;T, U&gt;, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple.Flatten&lt;T, U, V&gt; Method (Pair&lt;Pair&lt;T, U&gt;, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFlatten a nested pair of a pair into a Triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Triple&lt;T, U, V&gt; Flatten&lt;T, U, V&gt; (\n        Pair&lt;Pair&lt;T, U&gt;, V&gt; <i>nested</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">nested</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA nested tuple to flatten into a single tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA flattened tuple.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/43.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.InvariantException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.InvariantException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Invariant* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class InvariantException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/81.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/430.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple.Flatten&lt;T, U, V, Q&gt; Method (Pair&lt;Pair&lt;T, U&gt;, Pair&lt;V, Q&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple.Flatten&lt;T, U, V, Q&gt; Method (Pair&lt;Pair&lt;T, U&gt;, Pair&lt;V, Q&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFlatten a nested pair of pairs into a Quad.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Quad&lt;T, U, V, Q&gt; Flatten&lt;T, U, V, Q&gt; (\n        Pair&lt;Pair&lt;T, U&gt;, Pair&lt;V, Q&gt;&gt; <i>nested</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third type.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">nested</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA nested tuple to flatten into a single tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA flattened tuple.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/431.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Tuple.KV&lt;T, U&gt; Method (T, U)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Tuple.KV&lt;T, U&gt; Method (T, U)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a KeyValuePair from the given values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/239.html\">Tuple</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static KeyValuePair&lt;T, U&gt; KV&lt;T, U&gt; (\n        T <i>t</i>,\n        U <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new KeyValuePair.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/432.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExposes a strongly typed interface to an encapsulated WeakReference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/433.html\">Weak</a></td>\r\n<td>Overloaded. Construct a typed weak reference from the given WeakReference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/434.html\">Equals</a></td>\r\n<td>Overloaded. Compares the given object for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/435.html\">GetHashCode</a></td>\r\n<td>Hashcode override.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/436.html\">operator !=</a></td>\r\n<td>Overloaded. Compares two weak references for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/437.html\">operator ==</a></td>\r\n<td>Overloaded. Compares two weak references for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/438.html\">operator implicit</a></td>\r\n<td>Overloaded. Implicitly convert a value of type T to a Weak ref if needed.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/439.html\">TryGetValue</a></td>\r\n<td>Extract the value behind the weak reference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/440.html\">IsAlive</a></td>\r\n<td>Returns true if the reference is still alive.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/441.html\">Value</a></td>\r\n<td>Access the underlying value, if it still exists.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/433.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt; Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt; Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a typed weak reference from the given WeakReference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/442.html\">Weak (WeakReference)</a></td>\r\n<td>Construct a typed weak reference from the given WeakReference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/443.html\">Weak (T)</a></td>\r\n<td>Encapsulate the given object in a Weak ref.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/434.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares the given object for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/444.html\">Weak&lt;T&gt;.Equals (T)</a></td>\r\n<td>Compares the given object for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/445.html\">Weak&lt;T&gt;.Equals (Weak&lt;T&gt;)</a></td>\r\n<td>Compares the given object for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/446.html\">Weak&lt;T&gt;.Equals (object)</a></td>\r\n<td>Equality test.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/447.html\">Weak&lt;T&gt;.Equals (WeakReference)</a></td>\r\n<td>Compares the given object for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/435.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nHashcode override.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/436.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator != Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator != Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/454.html\">Weak&lt;T&gt;.operator != (Weak&lt;T&gt;, Weak&lt;T&gt;)</a></td>\r\n<td>Compares two weak references for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/455.html\">Weak&lt;T&gt;.operator != (Weak&lt;T&gt;, T)</a></td>\r\n<td>Compares two weak references for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/456.html\">Weak&lt;T&gt;.operator != (T, Weak&lt;T&gt;)</a></td>\r\n<td>Compares two weak references for inequality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/437.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator == Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator == Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/451.html\">Weak&lt;T&gt;.operator == (Weak&lt;T&gt;, Weak&lt;T&gt;)</a></td>\r\n<td>Compares two weak references for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/452.html\">Weak&lt;T&gt;.operator == (Weak&lt;T&gt;, T)</a></td>\r\n<td>Compares two weak references for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/453.html\">Weak&lt;T&gt;.operator == (T, Weak&lt;T&gt;)</a></td>\r\n<td>Compares two weak references for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/438.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a value of type T to a Weak ref if needed.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/448.html\">Weak&lt;T&gt;.operator implicit (T)</a></td>\r\n<td>Implicitly convert a value of type T to a Weak ref if needed.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/449.html\">Weak&lt;T&gt;.operator implicit (Weak&lt;T&gt;)</a></td>\r\n<td>Implicitly extract the value encapsulated in the Weak ref.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/450.html\">Weak&lt;T&gt;.operator implicit (Weak&lt;T&gt;)</a></td>\r\n<td>Implicitly extract the WeakReference encapsulated in the Weak value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/439.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.TryGetValue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.TryGetValue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtract the value behind the weak reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool TryGetValue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe underlying value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the value is alive, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/44.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Requires* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class RequiresException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/75.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/440.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.IsAlive Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.IsAlive Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the reference is still alive.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsAlive { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/441.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAccess the underlying value, if it still exists.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/442.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt; Constructor (WeakReference)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt; Constructor (WeakReference)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a typed weak reference from the given WeakReference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Weak (\n        WeakReference <i>reference</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reference</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe WeakReference to encapsulate.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidCastException</span></td>\r\n<td>If the provided WeakReference does not point\r\n            to an object of type T.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/443.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncapsulate the given object in a Weak ref.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Weak (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to encapsulate in a Weak reference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/444.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Equals Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Equals Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares the given object for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        T <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the underlying object is equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/445.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Equals Method (Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Equals Method (Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares the given object for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Weak&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the underlying object is equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/446.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEquality test.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare for equality.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the objects are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/447.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.Equals Method (WeakReference)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.Equals Method (WeakReference)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares the given object for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        WeakReference <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the underlying object is equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/448.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator implicit Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator implicit Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert a value of type T to a Weak ref if needed.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Weak&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA Weak reference to the value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/449.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator implicit Method (Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator implicit Method (Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly extract the value encapsulated in the Weak ref.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator T (\n        Weak&lt;T&gt; <i>weak</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">weak</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Weak reference from which to extract the value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Weak ref.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/45.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ContractInvariantMethodAttribute Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ContractInvariantMethodAttribute Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMarks a method as an object invariant. When IL rewriting is supported,\r\n            this method will be called at the end of every public method and getter.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class ContractInvariantMethodAttribute :&nbsp;</td>\n<td>\nAttribute<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/87.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/450.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator implicit Method (Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator implicit Method (Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly extract the WeakReference encapsulated in the Weak value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator WeakReference (\n        Weak&lt;T&gt; <i>weak</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">weak</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Weak reference from which to extract the WeakReference.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe WeakReference encapsulated in the Weak value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/451.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator == Method (Weak&lt;T&gt;, Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator == Method (Weak&lt;T&gt;, Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Weak&lt;T&gt; <i>left</i>,\n        Weak&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/452.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator == Method (Weak&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator == Method (Weak&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Weak&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/453.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator == Method (T, Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator == Method (T, Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        T <i>left</i>,\n        Weak&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/454.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator != Method (Weak&lt;T&gt;, Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator != Method (Weak&lt;T&gt;, Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Weak&lt;T&gt; <i>left</i>,\n        Weak&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if not equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/455.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator != Method (Weak&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator != Method (Weak&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Weak&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if not equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/456.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Weak&lt;T&gt;.operator != Method (T, Weak&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Weak&lt;T&gt;.operator != Method (T, Weak&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two weak references for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/247.html\">Weak&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        T <i>left</i>,\n        Weak&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first object to compare.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second object to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if not equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/457.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA 2-element tuple type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/458.html\">Pair</a></td>\r\n<td>Construct a new Pair.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/459.html\">Bind</a></td>\r\n<td>Bind all tuple elements to locals.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/460.html\">CompareTo</a></td>\r\n<td>Compare the two values, Pair.First first, then Pair.Second if Pair.First are equal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/461.html\">Equals</a></td>\r\n<td>Overloaded. Test Pair equality element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/462.html\">GetHashCode</a></td>\r\n<td>Compute hash code.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/463.html\">operator !=</a></td>\r\n<td>Compares two Pairs for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/464.html\">operator &lt;</a></td>\r\n<td>Orders two pairs.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/465.html\">operator ==</a></td>\r\n<td>Compares two Pairs for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/466.html\">operator &gt;</a></td>\r\n<td>Orders two pairs.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/467.html\">operator implicit</a></td>\r\n<td>Overloaded. Implicitly convert Pair to KeyValuePair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/468.html\">ToKeyValue</a></td>\r\n<td>Convert a Pair to a KeyValuePair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/469.html\">ToString</a></td>\r\n<td>Return a string representation of this Pair.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/470.html\">First</a></td>\r\n<td>First element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/471.html\">Second</a></td>\r\n<td>Second element of the tuple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/458.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt; Constructor (T0, T1)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt; Constructor (T0, T1)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new Pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pair (\n        T0 <i>first</i>,\n        T1 <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nValue of the first element.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nValue of the second element.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/459.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.Bind Method (out T0, out T1)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.Bind Method (out T0, out T1)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBind all tuple elements to locals.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bind (\n        out T0 <i>first</i>,\n        out T1 <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/46.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PureAttribute Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PureAttribute Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMarks a method as being \"pure\", with no side-effects.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class PureAttribute :&nbsp;</td>\n<td>\nAttribute<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/85.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/460.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.CompareTo Method (Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.CompareTo Method (Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare the two values, Pair.First first, then Pair.Second if Pair.First are equal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int CompareTo (\n        Pair&lt;T0, T1&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Pair to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the pairs are equal element-wise, returns a number greater than zero if\r\n            the current pair is greater than <span class=\"Code\">other</span> element-wise, else returns a\r\n            number greater than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/461.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest Pair equality element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/472.html\">Pair&lt;T0, T1&gt;.Equals (Pair&lt;T0, T1&gt;)</a></td>\r\n<td>Test Pair equality element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/1/473.html\">Pair&lt;T0, T1&gt;.Equals (object)</a></td>\r\n<td>Test equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/462.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute hash code.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHash code for the encapsulated values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/463.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator != Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator != Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Pairs for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Pair&lt;T0, T1&gt; <i>left</i>,\n        Pair&lt;T0, T1&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pair.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pair.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Pairs are not equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/464.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator &lt; Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator &lt; Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two pairs.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &lt; (\n        Pair&lt;T0, T1&gt; <i>left</i>,\n        Pair&lt;T0, T1&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pair.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pair.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the pairs are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/465.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator == Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator == Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Pairs for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Pair&lt;T0, T1&gt; <i>left</i>,\n        Pair&lt;T0, T1&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pair.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pair.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Pairs are equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/466.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator &gt; Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator &gt; Method (Pair&lt;T0, T1&gt;, Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two pairs.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &gt; (\n        Pair&lt;T0, T1&gt; <i>left</i>,\n        Pair&lt;T0, T1&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pair.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pair.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the pairs are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/467.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert Pair to KeyValuePair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/474.html\">Pair&lt;T0, T1&gt;.operator implicit (Pair&lt;T0, T1&gt;)</a></td>\r\n<td>Implicitly convert Pair to KeyValuePair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/475.html\">Pair&lt;T0, T1&gt;.operator implicit (KeyValuePair&lt;T0, T1&gt;)</a></td>\r\n<td>Implicitly convert KeyValuePair to Pair.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/468.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.ToKeyValue Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.ToKeyValue Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert a Pair to a KeyValuePair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public KeyValuePair&lt;T0, T1&gt; ToKeyValue ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA KeyValuePair, where Key=First, Value=Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/469.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of this Pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of this Pair.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/47.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>RuntimeContractsAttribute Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">RuntimeContractsAttribute Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis assembly-level attribute is added to an assembly after the\r\n            rewriter has processed it.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class RuntimeContractsAttribute :&nbsp;</td>\n<td>\nAttribute<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/89.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/470.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.First Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.First Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFirst element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T0 First { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/471.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.Second Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.Second Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSecond element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T1 Second { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/472.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.Equals Method (Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.Equals Method (Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest Pair equality element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Pair&lt;T0, T1&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the pairs are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/473.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the objects are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/474.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator implicit Method (Pair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator implicit Method (Pair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert Pair to KeyValuePair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator KeyValuePair&lt;T0, T1&gt; (\n        Pair&lt;T0, T1&gt; <i>pair</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">pair</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Pair to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA KeyValuePair, where Key=First, Value=Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/475.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pair&lt;T0, T1&gt;.operator implicit Method (KeyValuePair&lt;T0, T1&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pair&lt;T0, T1&gt;.operator implicit Method (KeyValuePair&lt;T0, T1&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplicitly convert KeyValuePair to Pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/234.html\">Pair&lt;T0, T1&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Pair&lt;T0, T1&gt; (\n        KeyValuePair&lt;T0, T1&gt; <i>pair</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">pair</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe KeyValuePair to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Pair instance, where First=Key, and Second=Value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/476.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis type encapsulates either a value of type <span class=\"Code\">TFirst</span>,\r\n            or <span class=\"Code\">TSecond</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/1/477.html\">Either</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/478.html\">Do</a></td>\r\n<td>Perform an action on the encapsulated value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/479.html\">First</a></td>\r\n<td>Returns an instances initialized to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/480.html\">operator explicit</a></td>\r\n<td>Overloaded. An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/481.html\">operator implicit</a></td>\r\n<td>Overloaded. A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/482.html\">Second</a></td>\r\n<td>Returns an instances initialized to Second.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/483.html\">Select</a></td>\r\n<td>Overloaded. If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/484.html\">Select&lt;TReturn&gt;</a></td>\r\n<td>Transform the encapsulated value into a <span class=\"Code\">TReturn</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/485.html\">IsFirst</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/1/486.html\">IsSecond</a></td>\r\n<td>Returns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/477.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Either ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/478.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Do Method (Action&lt;TFirst&gt;, Action&lt;TSecond&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an action on the encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Do (\n        Action&lt;TFirst&gt; <i>first</i>,\n        Action&lt;TSecond&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/479.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.First Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.First Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instances initialized to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond&gt; First (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/48.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMicrosoft-compatible Contracts class.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/40.html\">AssertException</a></td>\r\n<td>Exception thrown by Assert* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/41.html\">AssumeException</a></td>\r\n<td>Exception thrown by Assume* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/42.html\">EnsuresException</a></td>\r\n<td>Exception thrown by Ensures* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/43.html\">InvariantException</a></td>\r\n<td>Exception thrown by Invariant* functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/44.html\">RequiresException</a></td>\r\n<td>Exception thrown by Requires* functions.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/49.html\">Assert</a></td>\r\n<td>Overloaded. Checks a condition at the given program point, throws AssertException if</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/50.html\">Assume</a></td>\r\n<td>Overloaded. At runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException if the assumption is ever violated.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/51.html\">EndContractBlock</a></td>\r\n<td>A marker function to indicate the end of a legacy contract block.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/52.html\">Ensures</a></td>\r\n<td>Overloaded. Ensures the given condition is true at method termination, throws EnsuresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/53.html\">EnsuresOnThrow&lt;T&gt;</a></td>\r\n<td>Overloaded. Ensures the given condition is true at method termination, throws EnsuresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/54.html\">Exists</a></td>\r\n<td>Ensure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/55.html\">Exists&lt;T&gt;</a></td>\r\n<td>Ensures the given predicate is satisfied for at least one element of the collection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/56.html\">ForAll</a></td>\r\n<td>Ensure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/57.html\">ForAll&lt;T&gt;</a></td>\r\n<td>Ensures the given predicate is satisfied for all elements of the collection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/58.html\">Invariant</a></td>\r\n<td>Overloaded. Specifies an invariant property of a class. Throws Invariant exception if violated.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/59.html\">Requires</a></td>\r\n<td>Overloaded. Requires the condition to be true, throws RequiresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/60.html\">RequiresAlways</a></td>\r\n<td>Overloaded. Requires the condition to be true, throws RequiresException otherwise.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/480.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator explicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator explicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/489.html\">Either&lt;TFirst, TSecond&gt;.operator explicit (Either&lt;TFirst, TSecond&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/490.html\">Either&lt;TFirst, TSecond&gt;.operator explicit (Either&lt;TFirst, TSecond&gt;)</a></td>\r\n<td>An explicit cast on an Either type ensures the cast is appropriate.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/481.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator implicit Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator implicit Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/487.html\">Either&lt;TFirst, TSecond&gt;.operator implicit (TFirst)</a></td>\r\n<td>A value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/488.html\">Either&lt;TFirst, TSecond&gt;.operator implicit (TSecond)</a></td>\r\n<td>A value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/482.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Second Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Second Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an instances initialized to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Either&lt;TFirst, TSecond&gt; Second (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value used to initialize the Either type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn Either type initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/483.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Select Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Select Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/491.html\">Either&lt;TFirst, TSecond&gt;.Select (TFirst)</a></td>\r\n<td>If the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/492.html\">Either&lt;TFirst, TSecond&gt;.Select (TSecond)</a></td>\r\n<td>If the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/484.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Select&lt;TReturn&gt; Method (Func&lt;TFirst, TReturn&gt;, Func&lt;TSecond, TReturn&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransform the encapsulated value into a <span class=\"Code\">TReturn</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TReturn Select&lt;TReturn&gt; (\n        Func&lt;TFirst, TReturn&gt; <i>first</i>,\n        Func&lt;TSecond, TReturn&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TReturn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to return.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TFirst</span>.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nFunction to apply if encapsulated value is of type <span class=\"Code\">TSecond</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe computed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/485.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.IsFirst Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.IsFirst Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TFirst</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsFirst { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/486.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.IsSecond Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.IsSecond Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if encapsulated type is of type <span class=\"Code\">TSecond</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsSecond { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/487.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator implicit Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator implicit Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TFirst</span> can be implicitly converted to First.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond&gt; (\n        TFirst <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to First.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/488.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator implicit Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator implicit Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA value of type <span class=\"Code\">TSecond</span> can be implicitly converted to Second.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Either&lt;TFirst, TSecond&gt; (\n        TSecond <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to implicitly convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Either initialized to Second.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/489.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator explicit Method (Either&lt;TFirst, TSecond&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator explicit Method (Either&lt;TFirst, TSecond&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TFirst (\n        Either&lt;TFirst, TSecond&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/49.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assert Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assert Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks a condition at the given program point, throws AssertException if\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/67.html\">Contract.Assert (bool)</a></td>\r\n<td>Checks a condition at the given program point, throws AssertException if</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/68.html\">Contract.Assert (bool, string)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/490.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.operator explicit Method (Either&lt;TFirst, TSecond&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.operator explicit Method (Either&lt;TFirst, TSecond&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn explicit cast on an Either type ensures the cast is appropriate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static explicit operator TSecond (\n        Either&lt;TFirst, TSecond&gt; <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Either type to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the Either type, if the cast is appropriate, and\r\n            InvalidCastException otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/491.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Select Method (TFirst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Select Method (TFirst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TFirst</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TFirst Select (\n        TFirst <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TFirst</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/492.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Either&lt;TFirst, TSecond&gt;.Select Method (TSecond)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Either&lt;TFirst, TSecond&gt;.Select Method (TSecond)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nIf the type is <span class=\"Code\">TSecond</span>, return the value, else return <span class=\"Code\">otherwise</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/221.html\">Either&lt;TFirst, TSecond&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public TSecond Select (\n        TSecond <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if Either is not the expected type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encapsulated <span class=\"Code\">TSecond</span>, or <span class=\"Code\">otherwise</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/493.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 16-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/1/494.html\">Signed</a></td>\r\n<td>The signed fragment of the union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/1/495.html\">Unsigned</a></td>\r\n<td>The unsigned fragment of the union.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/496.html\">Union16</a></td>\r\n<td>Overloaded. Construct a flat 16-bit union from a signed value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/494.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16.Signed Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16.Signed Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe signed fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public short Signed</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/495.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16.Unsigned Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16.Unsigned Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe unsigned fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public ushort Unsigned</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/496.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16 Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16 Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 16-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/497.html\">Union16 (short)</a></td>\r\n<td>Construct a flat 16-bit union from a signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/498.html\">Union16 (ushort)</a></td>\r\n<td>Construct a flat 16-bit union from an unsigned value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/497.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16 Constructor (short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16 Constructor (short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 16-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union16 (\n        short <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe signed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/498.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union16 Constructor (ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union16 Constructor (ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 16-bit union from an unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/244.html\">Union16</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union16 (\n        ushort <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/499.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 32-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/1/500.html\">Signed</a></td>\r\n<td>The signed fragment of the union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/1.html\">Single</a></td>\r\n<td>The single fragment of the union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/2.html\">Unsigned</a></td>\r\n<td>The unsigned fragment of the union.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/3.html\">Union32</a></td>\r\n<td>Overloaded. Construct a flat 32-bit union from a signed value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/5.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Dynamics Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Dynamics Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Statically typed, safe reflection abstractions.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a></td>\r\n<td>\r\n        Statically typed, safe reflection abstractions.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/50.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assume Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assume Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAt runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException if the assumption is ever violated.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/65.html\">Contract.Assume (bool)</a></td>\r\n<td>At runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException if the assumption is ever violated.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/66.html\">Contract.Assume (bool, string)</a></td>\r\n<td>At runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException with the given message if the assumption is ever\r\n            violated.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/500.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32.Signed Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32.Signed Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe signed fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public int Signed</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/51.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EndContractBlock Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EndContractBlock Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA marker function to indicate the end of a legacy contract block.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void EndContractBlock ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/52.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Ensures Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Ensures Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/71.html\">Contract.Ensures (bool)</a></td>\r\n<td>Ensures the given condition is true at method termination, throws EnsuresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/72.html\">Contract.Ensures (bool, string)</a></td>\r\n<td>Ensures the given condition is true at method termination, throws EnsuresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/53.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresOnThrow&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresOnThrow&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/73.html\">Contract.EnsuresOnThrow&lt;T&gt; (bool)</a></td>\r\n<td>Ensures the given condition is true at method termination, throws EnsuresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/74.html\">Contract.EnsuresOnThrow&lt;T&gt; (bool, string)</a></td>\r\n<td>Ensures the given condition is true at method termination, throws EnsuresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/54.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Exists Method (int, int, Predicate&lt;int&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Exists Method (int, int, Predicate&lt;int&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Exists (\n        int <i>inclusiveLowerBound</i>,\n        int <i>exclusiveUpperBound</i>,\n        Predicate&lt;int&gt; <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">inclusiveLowerBound</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower bound of the range.\r\n</div>\r\n<div class=\"CommentParameterName\">exclusiveUpperBound</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper bound of the range (excluding this value).\r\n</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe predicate to test over the given range.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the predicate is true for any value in the range, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\npublic int [] Foo(String [] xs){\r\n              CodeContract.Requires(!CodeContract.Exists(0, xs .Length, index =&gt; xs[index] == null ));\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/55.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Exists&lt;T&gt; Method (IEnumerable&lt;T&gt;, Predicate&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Exists&lt;T&gt; Method (IEnumerable&lt;T&gt;, Predicate&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given predicate is satisfied for at least one element of the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Exists&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>x</i>,\n        Predicate&lt;T&gt; <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the element in the collection.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">x</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe collection.\r\n</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe predicate that must be satisfied.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if any element satisfies the predicate, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\npublic int [] Foo&lt;T&gt;(T[] xs){\r\n              CodeContract.Requires(!CodeContract.Exists(xs , (T x) =&gt; x == null) );\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/56.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.ForAll Method (int, int, Predicate&lt;int&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.ForAll Method (int, int, Predicate&lt;int&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsure the predicate is true over the given range of integers. The integers provided range over: [inclusiveLowerBound, exclusiveUpperBound).\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool ForAll (\n        int <i>inclusiveLowerBound</i>,\n        int <i>exclusiveUpperBound</i>,\n        Predicate&lt;int&gt; <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">inclusiveLowerBound</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower bound of the range.\r\n</div>\r\n<div class=\"CommentParameterName\">exclusiveUpperBound</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper bound of the range (excluding this value).\r\n</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe predicate that must be true over the given range.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the predicate is true over the range, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\npublic int [] Foo(String [] xs){\r\n              CodeContract.Requires(CodeContract.ForAll(0, xs .Length, index =&gt; xs[index] ! = null ));\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/57.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.ForAll&lt;T&gt; Method (IEnumerable&lt;T&gt;, Predicate&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.ForAll&lt;T&gt; Method (IEnumerable&lt;T&gt;, Predicate&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given predicate is satisfied for all elements of the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool ForAll&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>x</i>,\n        Predicate&lt;T&gt; <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the element in the collection.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">x</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe collection.\r\n</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe predicate that must be satisfied.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if all elements satisfy the predicate, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\npublic int [] Foo&lt;T&gt;(T[] xs){\r\n              CodeContract.Requires(CodeContract.ForAll(xs , (T x) =&gt; x != null) );\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/58.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Invariant Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Invariant Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies an invariant property of a class. Throws Invariant exception if violated.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/69.html\">Contract.Invariant (bool)</a></td>\r\n<td>Specifies an invariant property of a class. Throws Invariant exception if violated.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/70.html\">Contract.Invariant (bool, string)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/59.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Requires Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Requires Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/61.html\">Contract.Requires (bool)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/62.html\">Contract.Requires (bool, string)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/6.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Linq Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Linq Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Utilities for processing LINQ expression trees.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/2/411.html\">Sasa.Linq</a></td>\r\n<td>\r\n        Abstractions for writing LINQ expression visitors and query providers.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/60.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresAlways Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresAlways Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/63.html\">Contract.RequiresAlways (bool)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/64.html\">Contract.RequiresAlways (bool, string)</a></td>\r\n<td>Requires the condition to be true, throws RequiresException otherwise with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/61.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Requires Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Requires Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Requires (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe required condition.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/44.html\">Contract.RequiresException</a></td>\r\n<td>Throws RequiresException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/62.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Requires Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Requires Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Requires (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe required condition.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message thrown in the exception.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/44.html\">Contract.RequiresException</a></td>\r\n<td>Throws RequiresException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/63.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresAlways Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresAlways Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void RequiresAlways (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe required condition.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/44.html\">Contract.RequiresException</a></td>\r\n<td>Throws RequiresException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/64.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresAlways Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresAlways Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void RequiresAlways (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe required condition.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message thrown in the exception.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/44.html\">Contract.RequiresException</a></td>\r\n<td>Throws RequiresException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/65.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assume Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assume Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAt runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException if the assumption is ever violated.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Assume (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe assumed condition.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/41.html\">Contract.AssumeException</a></td>\r\n<td>Throws AssumeException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/66.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assume Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assume Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAt runtime the behaviour is the same as an assertion. At static verification time, these conditions are\r\n            added to the list of facts. Throws AssumeException with the given message if the assumption is ever\r\n            violated.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Assume (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe assumed condition.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message thrown in the exception.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/41.html\">Contract.AssumeException</a></td>\r\n<td>Throws AssumeException if the condition fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/67.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assert Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assert Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks a condition at the given program point, throws AssertException if\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Assert (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe asserted condition.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/40.html\">Contract.AssertException</a></td>\r\n<td>Throws AssertException if the assertion fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/68.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Assert Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Assert Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Assert (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe asserted condition.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message thrown in the exception.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/40.html\">Contract.AssertException</a></td>\r\n<td>Throws AssertException if the assertion fails.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/69.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Invariant Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Invariant Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSpecifies an invariant property of a class. Throws Invariant exception if violated.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Invariant (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe invariant condition.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/43.html\">Contract.InvariantException</a></td>\r\n<td>Throws InvariantException if the condition is ever violated.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function works but is not automatically inserted after each public method as described\r\n            in the MS documention. IL rewriting is required to function as described.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/7.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Mime Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Mime Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Mime types and file extensions, and functions to map between them.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/73.html\">Sasa.Mime</a></td>\r\n<td>\r\n        Mime types and file extensions, and functions to map between them.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/70.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Invariant Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Invariant Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRequires the condition to be true, throws RequiresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Invariant (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe invariant condition.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message thrown in the exception.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function works but is not automatically inserted after each public method as described\r\n            in the MS documention. IL rewriting is required to function as described.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/71.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Ensures Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Ensures Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Ensures (\n        bool <i>cond</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe condition that must hold.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/42.html\">Contract.EnsuresException</a></td>\r\n<td>Throws EnsuresException if the condition is violated at the end of the method.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function is currently a no-op since it requires IL rewriting to function properly.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/72.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.Ensures Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.Ensures Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Ensures (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe condition that must hold.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message to throw.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/1/42.html\">Contract.EnsuresException</a></td>\r\n<td>Throws EnsuresException if the condition is violated at the end of the method.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function is currently a no-op since it requires IL rewriting to function properly.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/73.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresOnThrow&lt;T&gt; Method (bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresOnThrow&lt;T&gt; Method (bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void EnsuresOnThrow&lt;T&gt; (\n        bool <i>cond</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Exception</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nCondition\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function is currently a no-op since it requires IL rewriting to function properly.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/74.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresOnThrow&lt;T&gt; Method (bool, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresOnThrow&lt;T&gt; Method (bool, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures the given condition is true at method termination, throws EnsuresException otherwise with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/39.html\">Contract</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void EnsuresOnThrow&lt;T&gt; (\n        bool <i>cond</i>,\n        string <i>msg</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Exception</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">cond</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe condition that must hold.\r\n</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message to throw if cond does not hold.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis contract function is currently a no-op since it requires IL rewriting to function properly.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/75.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Requires* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/44.html\">Contract.RequiresException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/76.html\">RequiresException</a></td>\r\n<td>Construct an instance with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/76.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.RequiresException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.RequiresException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an instance with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/44.html\">Contract.RequiresException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public RequiresException (\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/77.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssumeException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssumeException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Assume* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/41.html\">Contract.AssumeException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/78.html\">AssumeException</a></td>\r\n<td>Construct an instance with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/78.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssumeException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssumeException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an instance with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/41.html\">Contract.AssumeException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public AssumeException (\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/79.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssertException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssertException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Assert* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/40.html\">Contract.AssertException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/80.html\">AssertException</a></td>\r\n<td>Construct an instance with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/8.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Net Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Net Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Implementations of a few internet protocols and standards.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/150.html\">Sasa.Net</a></td>\r\n<td>\r\n        Abstractions shared by all internet protocols.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a></td>\r\n<td>\r\n        MIME message parsing.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a></td>\r\n<td>\r\n        Implementation of the Pop3 protocol.\r\n      </td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/153.html\">Sasa.Rfc</a></td>\r\n<td>\r\n        Implementations of some common RFC standards.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/80.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.AssertException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.AssertException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an instance with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/40.html\">Contract.AssertException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public AssertException (\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/81.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.InvariantException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.InvariantException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Invariant* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/43.html\">Contract.InvariantException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/82.html\">InvariantException</a></td>\r\n<td>Construct an instance with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/82.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.InvariantException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.InvariantException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an instance with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/43.html\">Contract.InvariantException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public InvariantException (\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/83.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nException thrown by Ensures* functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/42.html\">Contract.EnsuresException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/84.html\">EnsuresException</a></td>\r\n<td>Construct an instance with the given message.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/84.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Contract.EnsuresException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Contract.EnsuresException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an instance with the given message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/42.html\">Contract.EnsuresException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public EnsuresException (\n        string <i>msg</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">msg</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe error message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/85.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PureAttribute Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PureAttribute Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMarks a method as being \"pure\", with no side-effects.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/46.html\">PureAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/86.html\">PureAttribute</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/86.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PureAttribute Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PureAttribute Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/46.html\">PureAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PureAttribute ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/87.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ContractInvariantMethodAttribute Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ContractInvariantMethodAttribute Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMarks a method as an object invariant. When IL rewriting is supported,\r\n            this method will be called at the end of every public method and getter.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/45.html\">ContractInvariantMethodAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/88.html\">ContractInvariantMethodAttribute</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/88.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ContractInvariantMethodAttribute Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ContractInvariantMethodAttribute Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/45.html\">ContractInvariantMethodAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public ContractInvariantMethodAttribute ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/89.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>RuntimeContractsAttribute Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">RuntimeContractsAttribute Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis assembly-level attribute is added to an assembly after the\r\n            rewriter has processed it.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/47.html\">RuntimeContractsAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/1/90.html\">RuntimeContractsAttribute</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/9.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Operators Assembly</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Operators Assembly</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Namespaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n      Generic arithmetic and logical operators for primitive CIL types. Requires Full Trust.\r\n    \r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nNamespaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"2%\" />\r\n<col width=\"38%\" />\r\n<col width=\"60%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/Namespace.gif\" alt=\"Namespace\" /></td>\r\n<td><a href=\"../../Contents/3/233.html\">Sasa.Operators</a></td>\r\n<td>\r\n        Generic arithmetic and logical operators for primitive CIL types. These are unsafe to use for types that have overloadable operators.\r\n      </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/90.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>RuntimeContractsAttribute Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">RuntimeContractsAttribute Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/47.html\">RuntimeContractsAttribute</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/38.html\">System.Diagnostics.Contracts</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/3.html\">Sasa.Contracts</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public RuntimeContractsAttribute ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/91.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader5\" onclick=\"javascript: SetSectionVisibility(5, true); SetExpandCollapseAllToCollapseAll();\">Interfaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/150.html\">Future</a></td>\r\n<td>Functions on Future values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/151.html\">Future&lt;T&gt;</a></td>\r\n<td>A future value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/152.html\">Promise&lt;T&gt;</a></td>\r\n<td>Used to resolve or fail a future.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/153.html\">PromiseResolvedException</a></td>\r\n<td>Exception thrown when attempting to resolve a promise that has already been resolved.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/1/154.html\">Resolved&lt;T&gt;</a></td>\r\n<td>A resolved future.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader5\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg5\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(5);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(5);\">\r\nPublic Interfaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv5\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/155.html\">IFuture&lt;TFuture, T&gt;</a></td>\r\n<td>A future value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/1/156.html\">IPromise&lt;TFuture, TResolved, T&gt;</a></td>\r\n<td>Contract for promises, which are used to resolve or fail a future.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/92.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.IO Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.IO Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Extensions for I/O and file handling.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/93.html\">FsPath</a></td>\r\n<td>A structured file system path.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/94.html\">PortableReader</a></td>\r\n<td>A BinaryReader that decodes values from big-endian to host encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/1/95.html\">PortableWriter</a></td>\r\n<td>A BinaryWriter that encodes values from host to big-endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/96.html\">Streams</a></td>\r\n<td>Extension methods to System.IO.Stream</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/93.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FsPath Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FsPath Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA structured file system path.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class FsPath :&nbsp;</td>\n<td>\nValueType,<br />IEnumerable&lt;string&gt;,<br />\nIEnumerable,<br />\nIEquatable&lt;FsPath&gt;,<br />\nIComparable&lt;FsPath&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis module ensures that all paths containing \".\" and \"..\" are rewritten to equivalent forms without\r\n            directory change operations, where possible.\r\n            \r\n            In some cases, this is not possible, such as when \"..\" precedes the rest of the path, ie. ../foo. In such\r\n            cases, the directory change operations are retained, under the assumption that a future path combination\r\n            will permit full resolution.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/106.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/94.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableReader Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableReader Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA BinaryReader that decodes values from big-endian to host encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class PortableReader :&nbsp;</td>\n<td>\nBinaryReader<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/139.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/95.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PortableWriter Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PortableWriter Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA BinaryWriter that encodes values from host to big-endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class PortableWriter :&nbsp;</td>\n<td>\nBinaryWriter<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/127.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/96.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to System.IO.Stream\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Streams </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/1/97.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/97.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to System.IO.Stream\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/98.html\">CopyTo</a></td>\r\n<td>Copy one stream to another.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/99.html\">SpawnRead</a></td>\r\n<td>Overloaded. Perform an async read on the given stream and return a promise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/100.html\">SpawnWrite</a></td>\r\n<td>Overloaded. Perform an async write on the given stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/101.html\">ToArray</a></td>\r\n<td>Read the full stream into a byte array.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/98.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.CopyTo Method (Stream, Stream)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.CopyTo Method (Stream, Stream)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCopy one stream to another.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void CopyTo (\n        Stream <i>input</i>,\n        Stream <i>output</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream.\r\n</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output stream.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/1/99.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Streams.SpawnRead Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Streams.SpawnRead Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an async read on the given stream and return a promise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/96.html\">Streams</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/92.html\">Sasa.IO</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/4.html\">Sasa.Core</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/102.html\">Streams.SpawnRead (Stream, int)</a></td>\r\n<td>Perform an async read on the given stream and return a promise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/1/103.html\">Streams.SpawnRead (Stream, byte[], int, int)</a></td>\r\n<td>Perform an async read on the given stream into the given buffer.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/1.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32.Single Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32.Single Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe single fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public float Single</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/10.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64.Unsigned Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64.Unsigned Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe unsigned fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public ulong Unsigned</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/100.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.TryGetValue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.TryGetValue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempts to extract the value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool TryGetValue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value extracted.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if a value was available, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/101.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.HasValue Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.HasValue Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if there is a value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool HasValue { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/102.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.None Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.None Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn empty option value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;T&gt; None { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/103.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe wrapped value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/104.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.Equals Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.Equals Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares Option&lt;T&gt; and a T for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        T <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/105.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.Equals Method (Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.Equals Method (Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Option&lt;T&gt; instances for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Option&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/106.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/107.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator == Method (Option&lt;T&gt;, Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator == Method (Option&lt;T&gt;, Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Option&lt;T&gt; <i>left</i>,\n        Option&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/108.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator == Method (Option&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator == Method (Option&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Option&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/109.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator == Method (T, Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator == Method (T, Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        T <i>left</i>,\n        Option&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/11.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 64-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/12.html\">Union64 (long)</a></td>\r\n<td>Construct a flat 64-bit union from a signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/13.html\">Union64 (ulong)</a></td>\r\n<td>Construct a flat 64-bit union from an unsigned value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/14.html\">Union64 (double)</a></td>\r\n<td>Construct a flat 64-bit union from a double-precision floating point value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/110.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator != Method (Option&lt;T&gt;, Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator != Method (Option&lt;T&gt;, Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Option&lt;T&gt; <i>left</i>,\n        Option&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/111.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator != Method (Option&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator != Method (Option&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Option&lt;T&gt; <i>left</i>,\n        T <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/112.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator != Method (T, Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator != Method (T, Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        T <i>left</i>,\n        Option&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left comparand.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right comparand.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the instances are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/113.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOption operations.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/114.html\">Do&lt;T&gt;</a></td>\r\n<td>Performs the given action on the embedded value if it exists.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/115.html\">Select&lt;T&gt;</a></td>\r\n<td>Returns the encapsulated value if Some, returns 'none' otherwise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/116.html\">Select&lt;T, R&gt;</a></td>\r\n<td>Overloaded. Transforms the embedded value to a new value if it exists, otherwise\r\n            returns None.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/117.html\">SelectMany&lt;T, U&gt;</a></td>\r\n<td>Overloaded. Project an optional value to another optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/118.html\">SelectMany&lt;T, U, R&gt;</a></td>\r\n<td>Overloaded. Projects two optional values to a third value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/119.html\">ToNullable&lt;T&gt;</a></td>\r\n<td>Construct a Nullable value type given an option type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/120.html\">ToOption&lt;T&gt;</a></td>\r\n<td>Overloaded. Construct a new optional value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/114.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Do&lt;T&gt; Method (Option&lt;T&gt;, Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Do&lt;T&gt; Method (Option&lt;T&gt;, Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerforms the given action on the embedded value if it exists.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Do&lt;T&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Action&lt;T&gt; <i>action</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">action</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to apply.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/115.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T&gt; Method (Option&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T&gt; Method (Option&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the encapsulated value if Some, returns 'none' otherwise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Select&lt;T&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        T <i>none</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">none</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if o.IsNone.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value encapsulated in the option if <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>o.HasValue</pre></td></tr></table> is true,\r\n            <span class=\"Code\">none</span> otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/116.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransforms the embedded value to a new value if it exists, otherwise\r\n            returns None.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/123.html\">Option.Select&lt;T, R&gt; (Option&lt;T&gt;, Func&lt;T, R&gt;)</a></td>\r\n<td>Transforms the embedded value to a new value if it exists, otherwise\r\n            returns None.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/124.html\">Option.Select&lt;T, R&gt; (T?, Func&lt;T, R&gt;)</a></td>\r\n<td>Transforms the embedded value to a new value if it exists, otherwise\r\n            returns None.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/125.html\">Option.Select&lt;T, R&gt; (Option&lt;T&gt;, Func&lt;T, R&gt;, R)</a></td>\r\n<td>Performs a total match on the optional value and returns a new value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/126.html\">Option.Select&lt;T, R&gt; (Option&lt;T&gt;, Func&lt;T, R&gt;, Func&lt;R&gt;)</a></td>\r\n<td>Performs a total match on the optional value and returns a new value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/117.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject an optional value to another optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/127.html\">Option.SelectMany&lt;T, U&gt; (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;)</a></td>\r\n<td>Project an optional value to another optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/128.html\">Option.SelectMany&lt;T, U&gt; (Option&lt;T&gt;, Func&lt;T, U?&gt;)</a></td>\r\n<td>Project an optional value to another optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/129.html\">Option.SelectMany&lt;T, U&gt; (T?, Func&lt;T, Option&lt;U&gt;&gt;)</a></td>\r\n<td>Project an optional value to another optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/130.html\">Option.SelectMany&lt;T, U&gt; (T?, Func&lt;T, U?&gt;)</a></td>\r\n<td>Project an optional value to another optional value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/118.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects two optional values to a third value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/131.html\">Option.SelectMany&lt;T, U, R&gt; (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</a></td>\r\n<td>Projects two optional values to a third value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/132.html\">Option.SelectMany&lt;T, U, R&gt; (T?, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</a></td>\r\n<td>Projects two optional values to a third value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/133.html\">Option.SelectMany&lt;T, U, R&gt; (Option&lt;T&gt;, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</a></td>\r\n<td>Projects two optional values to a third value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/134.html\">Option.SelectMany&lt;T, U, R&gt; (T?, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</a></td>\r\n<td>Projects two optional values to a third value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/119.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.ToNullable&lt;T&gt; Method (Option&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.ToNullable&lt;T&gt; Method (Option&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a Nullable value type given an option type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T? ToNullable&lt;T&gt; (\n        Option&lt;T&gt; <i>option</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe nullable type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new nullable value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/12.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Constructor (long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Constructor (long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 64-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union64 (\n        long <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe signed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/120.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.ToOption&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.ToOption&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/121.html\">Option.ToOption&lt;T&gt; (T)</a></td>\r\n<td>Construct a new optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/122.html\">Option.ToOption&lt;T&gt; (T?)</a></td>\r\n<td>Construct a new optional value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/121.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.ToOption&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.ToOption&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;T&gt; ToOption&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to track.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/122.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.ToOption&lt;T&gt; Method (T?)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.ToOption&lt;T&gt; Method (T?)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;T&gt; ToOption&lt;T&gt; (\n        T? <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA nullable value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/123.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransforms the embedded value to a new value if it exists, otherwise\r\n            returns None.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; Select&lt;T, R&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, R&gt; <i>some</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">some</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to apply if <span class=\"Code\">option</span> has a value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">some</span>(<span class=\"Code\">option</span>) if <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>o.HasValue</pre></td></tr></table>\r\n            is true, or <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>new Option(default(R))</pre></td></tr></table> otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/124.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T, R&gt; Method (T?, Func&lt;T, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T, R&gt; Method (T?, Func&lt;T, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTransforms the embedded value to a new value if it exists, otherwise\r\n            returns None.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; Select&lt;T, R&gt; (\n        T? <i>option</i>,\n        Func&lt;T, R&gt; <i>some</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned optional value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">some</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to apply if <span class=\"Code\">option</span> has a value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">some</span>(<span class=\"Code\">option</span>) if <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>o.HasValue</pre></td></tr></table>\r\n            is true, or <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>new Option(default(R))</pre></td></tr></table> otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/125.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;, R)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;, R)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerforms a total match on the optional value and returns a new value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static R Select&lt;T, R&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, R&gt; <i>some</i>,\n        R <i>none</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">some</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call with the encapsulated value.\r\n</div>\r\n<div class=\"CommentParameterName\">none</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return value if optional value is None.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA value computed from the given functions.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/126.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;, Func&lt;R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.Select&lt;T, R&gt; Method (Option&lt;T&gt;, Func&lt;T, R&gt;, Func&lt;R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerforms a total match on the optional value and returns a new value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static R Select&lt;T, R&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, R&gt; <i>some</i>,\n        Func&lt;R&gt; <i>none</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the encapsulated value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional value.\r\n</div>\r\n<div class=\"CommentParameterName\">some</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call with the encapsulated value.\r\n</div>\r\n<div class=\"CommentParameterName\">none</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to call if no value available.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA value computed from the given functions.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/127.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U&gt; Method (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U&gt; Method (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject an optional value to another optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;U&gt; SelectMany&lt;T, U&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, Option&lt;U&gt;&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the original value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe original optional instance.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new optional value computed from the original.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/128.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U&gt; Method (Option&lt;T&gt;, Func&lt;T, U?&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U&gt; Method (Option&lt;T&gt;, Func&lt;T, U?&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject an optional value to another optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static U? SelectMany&lt;T, U&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, U?&gt; <i>selector</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where U</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the original value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe original optional instance.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new optional value computed from the original.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/129.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U&gt; Method (T?, Func&lt;T, Option&lt;U&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U&gt; Method (T?, Func&lt;T, Option&lt;U&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject an optional value to another optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;U&gt; SelectMany&lt;T, U&gt; (\n        T? <i>option</i>,\n        Func&lt;T, Option&lt;U&gt;&gt; <i>selector</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the original value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe original optional instance.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new optional value computed from the original.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/13.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Constructor (ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Constructor (ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 64-bit union from an unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union64 (\n        ulong <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/130.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U&gt; Method (T?, Func&lt;T, U?&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U&gt; Method (T?, Func&lt;T, U?&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProject an optional value to another optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static U? SelectMany&lt;T, U&gt; (\n        T? <i>option</i>,\n        Func&lt;T, U?&gt; <i>selector</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n<tr>\n<td class=\"NoWrapTop\">where U</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the original value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe original optional instance.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new optional value computed from the original.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/131.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U, R&gt; Method (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U, R&gt; Method (Option&lt;T&gt;, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects two optional values to a third value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; SelectMany&lt;T, U, R&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, Option&lt;U&gt;&gt; <i>selector</i>,\n        Func&lt;T, U, R&gt; <i>result</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional type.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate projection function.\r\n</div>\r\n<div class=\"CommentParameterName\">result</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe returned optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/132.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U, R&gt; Method (T?, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U, R&gt; Method (T?, Func&lt;T, Option&lt;U&gt;&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects two optional values to a third value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; SelectMany&lt;T, U, R&gt; (\n        T? <i>option</i>,\n        Func&lt;T, Option&lt;U&gt;&gt; <i>selector</i>,\n        Func&lt;T, U, R&gt; <i>result</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional type.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate projection function.\r\n</div>\r\n<div class=\"CommentParameterName\">result</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe returned optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/133.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U, R&gt; Method (Option&lt;T&gt;, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U, R&gt; Method (Option&lt;T&gt;, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects two optional values to a third value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; SelectMany&lt;T, U, R&gt; (\n        Option&lt;T&gt; <i>option</i>,\n        Func&lt;T, U?&gt; <i>selector</i>,\n        Func&lt;T, U, R&gt; <i>result</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where U</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional type.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate projection function.\r\n</div>\r\n<div class=\"CommentParameterName\">result</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe returned optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/134.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option.SelectMany&lt;T, U, R&gt; Method (T?, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option.SelectMany&lt;T, U, R&gt; Method (T?, Func&lt;T, U?&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProjects two optional values to a third value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/232.html\">Option</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Option&lt;R&gt; SelectMany&lt;T, U, R&gt; (\n        T? <i>option</i>,\n        Func&lt;T, U?&gt; <i>selector</i>,\n        Func&lt;T, U, R&gt; <i>result</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n<tr>\n<td class=\"NoWrapTop\">where U</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first value.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second value.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the projected value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">option</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe optional type.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intermediate projection function.\r\n</div>\r\n<div class=\"CommentParameterName\">result</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe final projection function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe returned optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/135.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IResolvable&lt;T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IResolvable&lt;T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA container for which you can test whether a value is available.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/250.html\">IResolvable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/136.html\">HasValue</a></td>\r\n<td>Returns true if a value is available.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/136.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IResolvable&lt;T&gt;.HasValue Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IResolvable&lt;T&gt;.HasValue Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if a value is available.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/250.html\">IResolvable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract bool HasValue { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/137.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IValue&lt;T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IValue&lt;T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA read-only encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/251.html\">IValue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/138.html\">Value</a></td>\r\n<td>A read-only reference to a value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/138.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IValue&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IValue&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA read-only reference to a value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/251.html\">IValue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/139.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IVolatile&lt;T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IVolatile&lt;T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA volatile value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/252.html\">IVolatile&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/140.html\">TryGetValue</a></td>\r\n<td>Attempt to extract the value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/14.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Constructor (double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Constructor (double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 64-bit union from a double-precision floating point value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union64 (\n        double <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe double-precision floating point value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/140.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IVolatile&lt;T&gt;.TryGetValue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IVolatile&lt;T&gt;.TryGetValue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempt to extract the value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/252.html\">IVolatile&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract bool TryGetValue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value contained in the reference.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the value was successfully retrieved, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/141.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IOptional&lt;T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IOptional&lt;T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncapsulates a value that may or may not be available.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/248.html\">IOptional&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/142.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IRef&lt;T&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IRef&lt;T&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA mutable reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/249.html\">IRef&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/143.html\">Value</a></td>\r\n<td>The value in the reference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/143.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IRef&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IRef&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe value in the reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/249.html\">IRef&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/144.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nArray extensions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Arrays </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/174.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/145.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Dictionaries Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Dictionaries Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUseful extensions to <span class=\"PseudoLink\">System.Collections.Generic.IDictionary`2</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Dictionaries </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/247.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/146.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnvironment mapping names to values, matching the semantics of lexical scoping.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Env&lt;K, V&gt; :&nbsp;</td>\n<td>\nValueType,<br />IEnumerable&lt;KeyValuePair&lt;K, V&gt;&gt;,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of keys.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis is essentially a purely functional dictionary\r\n            that supports shadowed values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/240.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/147.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class PQueue </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/238.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/148.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA persistent queue.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class PQueue&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />ISeq&lt;PQueue&lt;T&gt;, T&gt;,<br />\nIEquatable&lt;PQueue&lt;T&gt;&gt;,<br />\nIEnumerable&lt;T&gt;,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the queue elements.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/218.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/149.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n<a href=\"#SectionHeader3\" onclick=\"javascript: SetSectionVisibility(3, true); SetExpandCollapseAllToCollapseAll();\">Example</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA purely functional stack.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Seq&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />ISeq&lt;Seq&lt;T&gt;, T&gt;,<br />\nIEquatable&lt;Seq&lt;T&gt;&gt;,<br />\nIEnumerable&lt;T&gt;,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the sequence elements.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\n\"null\" is also a valid sequence value that can be used to\r\n            construct lists (see example).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/184.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader3\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg3\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(3);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(3);\">\r\nExample\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv3\" class=\"SectionContainer\">\r\n<table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>Seq&lt;T&gt; list = value1 &amp; value2 &amp; null;</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/15.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 128-bit decimal union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/16.html\">Decimal</a></td>\r\n<td>The decimal value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/17.html\">First64</a></td>\r\n<td>The first 64-bits of the decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/18.html\">Second64</a></td>\r\n<td>The second 64-bits of the decimal.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/19.html\">Union128</a></td>\r\n<td>Overloaded. Construct a flat 128-bit union from a decimal.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/150.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functions for <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Set </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/172.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/151.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA simple set based on <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Set&lt;T&gt; :&nbsp;</td>\n<td>\nValueType,<br />ISeq&lt;Set&lt;T&gt;, T&gt;,<br />\nIEquatable&lt;Set&lt;T&gt;&gt;,<br />\nIEnumerable&lt;T&gt;,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the set's elements.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/153.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/152.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt; Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt; Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe interface describing a purely functional collection.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface ISeq&lt;TCollection, TItem&gt; :&nbsp;</td>\n<td>\nIEquatable&lt;TCollection&gt;,<br />\nIEnumerable&lt;TItem&gt;,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where TCollection</td>\n<td>&nbsp;: ISeq&lt;TCollection, TItem&gt;, new()</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TCollection</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the collection.\r\n</div>\r\n<div class=\"CommentParameterName\">TItem</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the elements contained within the collection\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThe precise semantics of the collection is implementation-specific. A sequence of Add and Remove\r\n            calls may return items in an arbitrary sequence depending on the type collection.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/251.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/153.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA simple set based on <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/154.html\">Contains</a></td>\r\n<td>Checks the set for membership of an item.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/155.html\">Equals</a></td>\r\n<td>Compares two sets for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/156.html\">GetEnumerator</a></td>\r\n<td>Enumerate over all items in the set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/157.html\">Intersect</a></td>\r\n<td>Overloaded. Compute the intersection of all items.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/158.html\">operator &amp;</a></td>\r\n<td>Overloaded. The union of two sets.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/159.html\">operator ^</a></td>\r\n<td>The intersection of two sets.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/160.html\">ToString</a></td>\r\n<td>Construct a string for the set.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/161.html\">Union</a></td>\r\n<td>Overloaded. Compute the union of the current set with the given item.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/162.html\">IsEmpty</a></td>\r\n<td>Returns true if the set is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/154.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Contains Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Contains Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks the set for membership of an item.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Contains (\n        T <i>item</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">item</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item to check.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if item is in the set.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/155.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Equals Method (Set&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Equals Method (Set&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two sets for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Set&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe set to compare.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the two sets are equivalent.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/156.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnumerate over all items in the set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;T&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumerator for the set.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/157.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Intersect Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Intersect Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the intersection of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/167.html\">Set&lt;T&gt;.Intersect (T[])</a></td>\r\n<td>Compute the intersection of all items.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/168.html\">Set&lt;T&gt;.Intersect (IEnumerable&lt;T&gt;)</a></td>\r\n<td>Compute the intersection of all items.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/169.html\">Set&lt;T&gt;.Intersect (Set&lt;T&gt;)</a></td>\r\n<td>Compute the intersection of all items.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/158.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.operator &amp; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.operator &amp; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe union of two sets.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/170.html\">Set&lt;T&gt;.operator &amp; (Set&lt;T&gt;, Set&lt;T&gt;)</a></td>\r\n<td>The union of two sets.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/171.html\">Set&lt;T&gt;.operator &amp; (Set&lt;T&gt;, T)</a></td>\r\n<td>The union of a set and a value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/159.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.operator ^ Method (Set&lt;T&gt;, Set&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.operator ^ Method (Set&lt;T&gt;, Set&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe intersection of two sets.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Set&lt;T&gt; operator ^ (\n        Set&lt;T&gt; <i>s1</i>,\n        Set&lt;T&gt; <i>s2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first set.\r\n</div>\r\n<div class=\"CommentParameterName\">s2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe intersection of <span class=\"Code\">s1</span> and <span class=\"Code\">s2</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/16.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128.Decimal Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128.Decimal Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe decimal value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public decimal Decimal</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/160.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a string for the set.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the set.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/161.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Union Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Union Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the union of the current set with the given item.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/163.html\">Set&lt;T&gt;.Union (T)</a></td>\r\n<td>Compute the union of the current set with the given item.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/164.html\">Set&lt;T&gt;.Union (T[])</a></td>\r\n<td>Compute the union of all items.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/165.html\">Set&lt;T&gt;.Union (IEnumerable&lt;T&gt;)</a></td>\r\n<td>Compute the union of all items.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/166.html\">Set&lt;T&gt;.Union (Set&lt;T&gt;)</a></td>\r\n<td>Compute the union of all items.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/162.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.IsEmpty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.IsEmpty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the set is empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsEmpty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/163.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Union Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Union Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the union of the current set with the given item.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Union (\n        T <i>item</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">item</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item to add to the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the union of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/164.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Union Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Union Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the union of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Union (\n        params T[] <i>items</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">items</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe items to add to the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the union of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/165.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Union Method (IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Union Method (IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the union of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Union (\n        IEnumerable&lt;T&gt; <i>items</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">items</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe items to add to the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the union of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/166.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Union Method (Set&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Union Method (Set&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the union of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Union (\n        Set&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other set whose items we add to the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the union of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/167.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Intersect Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Intersect Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the intersection of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Intersect (\n        params T[] <i>items</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">items</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe items to compare with the current set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the intersection of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/168.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Intersect Method (IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Intersect Method (IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the intersection of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Intersect (\n        IEnumerable&lt;T&gt; <i>items</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">items</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe items to compare with the current set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the intersection of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/169.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.Intersect Method (Set&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.Intersect Method (Set&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the intersection of all items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Set&lt;T&gt; Intersect (\n        Set&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe set whose items to compare with the current set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the intersection of all items.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/17.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128.First64 Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128.First64 Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe first 64-bits of the decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public ulong First64</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/170.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.operator &amp; Method (Set&lt;T&gt;, Set&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.operator &amp; Method (Set&lt;T&gt;, Set&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe union of two sets.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Set&lt;T&gt; operator &amp; (\n        Set&lt;T&gt; <i>s1</i>,\n        Set&lt;T&gt; <i>s2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first set.\r\n</div>\r\n<div class=\"CommentParameterName\">s2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe union of <span class=\"Code\">s1</span> and <span class=\"Code\">s2</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/171.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set&lt;T&gt;.operator &amp; Method (Set&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set&lt;T&gt;.operator &amp; Method (Set&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe union of a set and a value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Set&lt;T&gt; operator &amp; (\n        Set&lt;T&gt; <i>s1</i>,\n        T <i>item</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first set.\r\n</div>\r\n<div class=\"CommentParameterName\">item</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item to add to the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe union of <span class=\"Code\">s1</span> and <span class=\"Code\">item</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/172.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUtility functions for <a href=\"../../Contents/2/151.html\">Set&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/150.html\">Set</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/173.html\">Make&lt;T&gt;</a></td>\r\n<td>Construct an initial set from the list of items.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/173.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Set.Make&lt;T&gt; Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Set.Make&lt;T&gt; Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an initial set from the list of items.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/150.html\">Set</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Set&lt;T&gt; Make&lt;T&gt; (\n        params T[] <i>items</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the set.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">items</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe initial items with which to populate the set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new set with the initial values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/174.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nArray extensions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/175.html\">Aggregate&lt;T, U&gt;</a></td>\r\n<td>Process each element of an array.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/176.html\">Append&lt;T&gt;</a></td>\r\n<td>Combine the values of two arrays into a new array.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/177.html\">Bound&lt;T&gt;</a></td>\r\n<td>Returns an array with the given length, seeded with the\r\n            <span class=\"Code\">array</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/178.html\">Dup&lt;T&gt;</a></td>\r\n<td>Duplicates a given array.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/179.html\">Eq&lt;T&gt;</a></td>\r\n<td>Test two arrays for equality, element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/180.html\">Fill&lt;T&gt;</a></td>\r\n<td>Populates the given array with <span class=\"Code\">item</span>, starting at the given index\r\n            for <span class=\"Code\">count</span> entries.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/181.html\">Make&lt;T&gt;</a></td>\r\n<td>A syntactic shortcut to create arrays of values leveraging type inference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/182.html\">Repeat&lt;T&gt;</a></td>\r\n<td>Repeats all entries in <span class=\"Code\">array</span> up to <span class=\"Code\">start</span>\r\n            as many times as will fit.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/183.html\">Slice&lt;T&gt;</a></td>\r\n<td>Return a slice of an array delineated by the start and end indices.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/175.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Aggregate&lt;T, U&gt; Method (T[], U, Func&lt;T, U, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Aggregate&lt;T, U&gt; Method (T[], U, Func&lt;T, U, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProcess each element of an array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static U Aggregate&lt;T, U&gt; (\n        T[] <i>array</i>,\n        U <i>seed</i>,\n        Func&lt;T, U, U&gt; <i>func</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array.\r\n</div>\r\n<div class=\"CommentParameterName\">seed</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe seed value.\r\n</div>\r\n<div class=\"CommentParameterName\">func</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function transforming the array.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the array.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/176.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Append&lt;T&gt; Method (T[], T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Append&lt;T&gt; Method (T[], T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCombine the values of two arrays into a new array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Append&lt;T&gt; (\n        T[] <i>first</i>,\n        params T[] <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type in the array.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first array.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second array.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns a new array with the values of <span class=\"Code\">first</span>, followed by the values in <span class=\"Code\">second</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/177.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Bound&lt;T&gt; Method (T[], uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Bound&lt;T&gt; Method (T[], uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an array with the given length, seeded with the\r\n            <span class=\"Code\">array</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Bound&lt;T&gt; (\n        T[] <i>array</i>,\n        uint <i>count</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array.\r\n</div>\r\n<div class=\"CommentParameterName\">count</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of items in the returned array.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn array of length <span class=\"Code\">count</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nIf <span class=\"Code\">count</span> equals a.Length, then the same array\r\n            is returned. If <span class=\"Code\">count</span> is greater than a.Length, then\r\n            a new array is created and seeded with the original values in <span class=\"Code\">array</span>\r\n            with the remainder of the array remaining uninitialized.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/178.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Dup&lt;T&gt; Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Dup&lt;T&gt; Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDuplicates a given array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Dup&lt;T&gt; (\n        T[] <i>array</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA duplicate of the given array.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/179.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Eq&lt;T&gt; Method (T[], T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Eq&lt;T&gt; Method (T[], T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest two arrays for equality, element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Eq&lt;T&gt; (\n        T[] <i>a1</i>,\n        T[] <i>a2</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the arrays.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">a1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first array.\r\n</div>\r\n<div class=\"CommentParameterName\">a2</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second array.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the two arrays are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/18.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128.Second64 Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128.Second64 Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe second 64-bits of the decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public ulong Second64</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/180.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Fill&lt;T&gt; Method (T[], T, uint, uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Fill&lt;T&gt; Method (T[], T, uint, uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPopulates the given array with <span class=\"Code\">item</span>, starting at the given index\r\n            for <span class=\"Code\">count</span> entries.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Fill&lt;T&gt; (\n        T[] <i>array</i>,\n        T <i>item</i>,\n        uint <i>i</i>,\n        uint <i>count</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array.\r\n</div>\r\n<div class=\"CommentParameterName\">item</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item with which to fill the array.\r\n</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start filling.\r\n</div>\r\n<div class=\"CommentParameterName\">count</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of entries to set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">array</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/181.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Make&lt;T&gt; Method (T[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Make&lt;T&gt; Method (T[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA syntactic shortcut to create arrays of values leveraging type inference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Make&lt;T&gt; (\n        params T[] <i>values</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">values</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe values to create.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn array of the provided values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/182.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Repeat&lt;T&gt; Method (T[], uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Repeat&lt;T&gt; Method (T[], uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepeats all entries in <span class=\"Code\">array</span> up to <span class=\"Code\">start</span>\r\n            as many times as will fit.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Repeat&lt;T&gt; (\n        T[] <i>array</i>,\n        uint <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array to slice.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which to start duplicating elements.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">array</span> after the update.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/183.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arrays.Slice&lt;T&gt; Method (T[], uint, uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arrays.Slice&lt;T&gt; Method (T[], uint, uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a slice of an array delineated by the start and end indices.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/144.html\">Arrays</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T[] Slice&lt;T&gt; (\n        T[] <i>array</i>,\n        uint <i>start</i>,\n        uint <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array to slice.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe start of the slice.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the slice.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array slice.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/184.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA purely functional stack.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/185.html\">Seq</a></td>\r\n<td>Overloaded. Construct a new single-element sequence.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/186.html\">Append</a></td>\r\n<td>Append the given sequence after the current sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/187.html\">Contains</a></td>\r\n<td>Checks whether a value is in the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/188.html\">Do</a></td>\r\n<td>Apply an operation over a sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/189.html\">Equals</a></td>\r\n<td>Overloaded. Tests structural equality of two sequences.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/190.html\">GetEnumerator</a></td>\r\n<td>Returns an enumerator over the given list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/191.html\">GetHashCode</a></td>\r\n<td>Returns the hash code for the current sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/192.html\">operator !=</a></td>\r\n<td>Test two sequences for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/193.html\">operator &amp;</a></td>\r\n<td>Overloaded. The sequence 'cons'/add operation, to construct a sequence from a new value and an existing list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/194.html\">operator |</a></td>\r\n<td>Returns the value at the head of the sequence o, if o is not empty, or t otherwise. This is\r\n            the sequence equivalent of the ?? operator for null values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/195.html\">operator ==</a></td>\r\n<td>Test two sequences for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/196.html\">Peek</a></td>\r\n<td>Peeks at the current value in the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/197.html\">Pop</a></td>\r\n<td>Overloaded. Pops the first element off the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/198.html\">Push</a></td>\r\n<td>Push an element on to the front of the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/199.html\">Remove</a></td>\r\n<td>Remove an element from the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/200.html\">Reverse</a></td>\r\n<td>Reverse a sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/201.html\">ReverseAppend</a></td>\r\n<td>Reverses the current sequence and appens another sequence to the end.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/202.html\">Select</a></td>\r\n<td>Return the value at the head of the list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/203.html\">Select&lt;R&gt;</a></td>\r\n<td>Apply an operation to a deconstructed list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/204.html\">Set</a></td>\r\n<td>Perform an atomic set of a stack value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/205.html\">ToString</a></td>\r\n<td>Return a string representation of the given list.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/206.html\">Empty</a></td>\r\n<td>Returns an empty stack.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/207.html\">IsEmpty</a></td>\r\n<td>Returns true if the sequence is empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/208.html\">Next</a></td>\r\n<td>Returns the next element in the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/209.html\">Value</a></td>\r\n<td>Gets the current element of the collection.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/185.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt; Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt; Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new single-element sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/210.html\">Seq (T, Seq&lt;T&gt;)</a></td>\r\n<td>Construct a new sequence from a new head value and an existing list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/211.html\">Seq (T)</a></td>\r\n<td>Construct a new single-element sequence.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/186.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Append Method (Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Append Method (Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAppend the given sequence after the current sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Append (\n        Seq&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe elements to append.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new sequence constructed from the given parameters.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/187.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Contains Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Contains Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks whether a value is in the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Contains (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to test.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the element is in the sequence, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/188.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Do Method (Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Do Method (Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApply an operation over a sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Do (\n        Action&lt;T&gt; <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to apply.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/189.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTests structural equality of two sequences.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/212.html\">Seq&lt;T&gt;.Equals (Seq&lt;T&gt;)</a></td>\r\n<td>Tests structural equality of two sequences.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/213.html\">Seq&lt;T&gt;.Equals (object)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/19.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128 Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128 Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 128-bit union from a decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/20.html\">Union128 (decimal)</a></td>\r\n<td>Construct a flat 128-bit union from a decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/21.html\">Union128 (ulong, ulong)</a></td>\r\n<td>Construct a flat 128-bit union from two unsigned 64-bit values.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/190.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an enumerator over the given list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;T&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration over the list.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/191.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the hash code for the current sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe integer hash code.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/192.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator != Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator != Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest two sequences for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Seq&lt;T&gt; <i>left</i>,\n        Seq&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left sequence.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if they are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/193.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator &amp; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator &amp; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe sequence 'cons'/add operation, to construct a sequence from a new value and an existing list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/216.html\">Seq&lt;T&gt;.operator &amp; (Seq&lt;T&gt;, T)</a></td>\r\n<td>The sequence 'cons'/add operation, to construct a sequence from a new value and an existing list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/217.html\">Seq&lt;T&gt;.operator &amp; (Seq&lt;T&gt;, Seq&lt;T&gt;)</a></td>\r\n<td>The sequence 'cons'/add operation, to construct a sequence from two lists.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/194.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator | Method (Seq&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator | Method (Seq&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the value at the head of the sequence o, if o is not empty, or t otherwise. This is\r\n            the sequence equivalent of the ?? operator for null values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T operator | (\n        Seq&lt;T&gt; <i>o</i>,\n        T <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">o</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sequence value to return if not empty.\r\n</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return otherwise.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nEither the head of the list, or t.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/195.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator == Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator == Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest two sequences for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Seq&lt;T&gt; <i>left</i>,\n        Seq&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left sequence.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if they are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/196.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Peek Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Peek Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPeeks at the current value in the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Peek ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value at the head of the sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the sequence is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/197.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Pop Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Pop Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPops the first element off the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/214.html\">Seq&lt;T&gt;.Pop (out T)</a></td>\r\n<td>Pops the first element off the sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/215.html\">Seq&lt;T&gt;.Pop ()</a></td>\r\n<td>Pops the first element off the sequence.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/198.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Push Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Push Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPush an element on to the front of the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Push (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new head of the sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/199.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Remove Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Remove Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove an element from the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Remove (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to remove.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new sequence without the element.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/2.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32.Unsigned Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32.Unsigned Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe unsigned fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public uint Unsigned</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/20.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128 Constructor (decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128 Constructor (decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 128-bit union from a decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union128 (\n        decimal <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decimal value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/200.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Reverse Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Reverse Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReverse a sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Reverse ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA reversed sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/201.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.ReverseAppend Method (Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.ReverseAppend Method (Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReverses the current sequence and appens another sequence to the end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; ReverseAppend (\n        Seq&lt;T&gt; <i>append</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">append</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sequence to append.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA combined sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/202.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Select Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Select Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the value at the head of the list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Select (\n        T <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if the sequence is empty.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns the value at the head of the list, or 'otherwise' if the sequence is empty.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/203.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Select&lt;R&gt; Method (R, Func&lt;T, Seq&lt;T&gt;, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Select&lt;R&gt; Method (R, Func&lt;T, Seq&lt;T&gt;, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApply an operation to a deconstructed list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public R Select&lt;R&gt; (\n        R <i>otherwise</i>,\n        Func&lt;T, Seq&lt;T&gt;, R&gt; <i>cons</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return if the sequence is empty.\r\n</div>\r\n<div class=\"CommentParameterName\">cons</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to invoke with the deconstructed head of the list.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns cons(head, tail), or otherwise if the sequence is empty.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/204.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Set Method (ref Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Set Method (ref Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerform an atomic set of a stack value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Set (\n        ref Seq&lt;T&gt; <i>slot</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reference at which to place the new head.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the swap succeeded.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/205.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of the given list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nString represetation of the list.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/206.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Empty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Empty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an empty stack.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Seq&lt;T&gt; Empty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/207.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.IsEmpty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.IsEmpty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the sequence is empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsEmpty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/208.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Next Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Next Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the next element in the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Next { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the collection is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/209.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGets the current element of the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the collection is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/21.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union128 Constructor (ulong, ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union128 Constructor (ulong, ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 128-bit union from two unsigned 64-bit values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/243.html\">Union128</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union128 (\n        ulong <i>first64</i>,\n        ulong <i>second64</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first64</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first 64-bits.\r\n</div>\r\n<div class=\"CommentParameterName\">second64</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second 64-bits.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/210.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt; Constructor (T, Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt; Constructor (T, Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new sequence from a new head value and an existing list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq (\n        T <i>e</i>,\n        Seq&lt;T&gt; <i>tail</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value at the head of the list.\r\n</div>\r\n<div class=\"CommentParameterName\">tail</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe remainder of the list.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/211.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new single-element sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq (\n        T <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value at the head of the list.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/212.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Equals Method (Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Equals Method (Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTests structural equality of two sequences.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Seq&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other sequence to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the sequences are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/213.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the objects are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/214.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Pop Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Pop Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPops the first element off the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Seq&lt;T&gt; Pop (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value in the first element of the sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe remaining sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the sequence is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/215.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.Pop Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.Pop Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPops the first element off the sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pair&lt;Seq&lt;T&gt;, T&gt; Pop ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pair consisting of the new sequence and the current element of the sequence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the sequence is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/216.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator &amp; Method (Seq&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator &amp; Method (Seq&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe sequence 'cons'/add operation, to construct a sequence from a new value and an existing list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Seq&lt;T&gt; operator &amp; (\n        Seq&lt;T&gt; <i>l</i>,\n        T <i>t</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">l</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe remainder of the list.\r\n</div>\r\n<div class=\"CommentParameterName\">t</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value at the head of the list.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new sequence constructed from the given parameters.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/217.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Seq&lt;T&gt;.operator &amp; Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Seq&lt;T&gt;.operator &amp; Method (Seq&lt;T&gt;, Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe sequence 'cons'/add operation, to construct a sequence from two lists.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/149.html\">Seq&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Seq&lt;T&gt; operator &amp; (\n        Seq&lt;T&gt; <i>left</i>,\n        Seq&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new value at the head of the list.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe remainder of the list.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new sequence constructed from the given parameters.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/218.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA persistent queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/219.html\">PQueue</a></td>\r\n<td>Overloaded. Initialize the queue with the given list of values.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/220.html\">Append</a></td>\r\n<td>Appends the elements of two queues.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/221.html\">Dequeue</a></td>\r\n<td>Overloaded. Remove an item from the collection</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/222.html\">Enqueue</a></td>\r\n<td>Enqueue a value and return a new queue.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/223.html\">Equals</a></td>\r\n<td>Overloaded. Tests structural equality of two queues.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/224.html\">GetEnumerator</a></td>\r\n<td>Returns an enumerator over the given list.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/225.html\">GetHashCode</a></td>\r\n<td>Returns the hash code for the current sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/226.html\">operator !=</a></td>\r\n<td>Test two sequences for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/227.html\">operator ==</a></td>\r\n<td>Test two queues for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/228.html\">ToString</a></td>\r\n<td>Converts a queue to a string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/229.html\">Empty</a></td>\r\n<td>An empty queue.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/230.html\">IsEmpty</a></td>\r\n<td>Returns true if the queue is empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/231.html\">Value</a></td>\r\n<td>Returns the first value in the queue.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/219.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt; Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt; Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInitialize the queue with the given list of values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/232.html\">PQueue (IEnumerable&lt;T&gt;)</a></td>\r\n<td>Initialize the queue with the given list of values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/233.html\">PQueue (T)</a></td>\r\n<td>Construct a single-element queue.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/22.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEndian conversions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/23.html\">FromBig</a></td>\r\n<td>Overloaded. Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/24.html\">Swap</a></td>\r\n<td>Overloaded. Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/25.html\">ToBig</a></td>\r\n<td>Overloaded. Convert the value to big endian.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/220.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Append Method (PQueue&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Append Method (PQueue&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAppends the elements of two queues.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PQueue&lt;T&gt; Append (\n        PQueue&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe queue whose elements we should append.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new queue consisting of this queue's elements followed by <span class=\"Code\">other</span>'s elements.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/221.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Dequeue Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Dequeue Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove an item from the collection\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/236.html\">PQueue&lt;T&gt;.Dequeue (out T)</a></td>\r\n<td>Dequeue the first value in the queue.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/237.html\">PQueue&lt;T&gt;.Dequeue ()</a></td>\r\n<td>Remove an item from the collection</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/222.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Enqueue Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Enqueue Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnqueue a value and return a new queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PQueue&lt;T&gt; Enqueue (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to enqueue.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new queue with <span class=\"Code\">value</span> as its last element.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/223.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTests structural equality of two queues.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/234.html\">PQueue&lt;T&gt;.Equals (PQueue&lt;T&gt;)</a></td>\r\n<td>Tests structural equality of two queues.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/235.html\">PQueue&lt;T&gt;.Equals (object)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/224.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an enumerator over the given list.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;T&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration over the list.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/225.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the hash code for the current sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe integer hash code.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/226.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.operator != Method (PQueue&lt;T&gt;, PQueue&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.operator != Method (PQueue&lt;T&gt;, PQueue&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest two sequences for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        PQueue&lt;T&gt; <i>left</i>,\n        PQueue&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left sequence.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if they are not equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/227.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.operator == Method (PQueue&lt;T&gt;, PQueue&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.operator == Method (PQueue&lt;T&gt;, PQueue&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest two queues for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        PQueue&lt;T&gt; <i>left</i>,\n        PQueue&lt;T&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left queue.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right queue.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if they are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/228.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConverts a queue to a string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the queue.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/229.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Empty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Empty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn empty queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static PQueue&lt;T&gt; Empty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/23.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/36.html\">Endian.FromBig (Union16)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/37.html\">Endian.FromBig (short)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/38.html\">Endian.FromBig (ushort)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/39.html\">Endian.FromBig (int)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/40.html\">Endian.FromBig (Union32)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/41.html\">Endian.FromBig (uint)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/42.html\">Endian.FromBig (Union64)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/43.html\">Endian.FromBig (long)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/44.html\">Endian.FromBig (ulong)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/45.html\">Endian.FromBig (decimal)</a></td>\r\n<td>Convert the value from big endian to host endian encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/230.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.IsEmpty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.IsEmpty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the queue is empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsEmpty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/231.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the first value in the queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the queue is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/232.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt; Constructor (IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt; Constructor (IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInitialize the queue with the given list of values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PQueue (\n        IEnumerable&lt;T&gt; <i>values</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">values</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe list of values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/233.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a single-element queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PQueue (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe initial queue value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/234.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Equals Method (PQueue&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Equals Method (PQueue&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTests structural equality of two queues.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        PQueue&lt;T&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other queue to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the queues are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/235.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other object to compare to.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the objects are equal.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/236.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Dequeue Method (out T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Dequeue Method (out T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDequeue the first value in the queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public PQueue&lt;T&gt; Dequeue (\n        out T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value in the queue.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns a new queue minus the first value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/237.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue&lt;T&gt;.Dequeue Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue&lt;T&gt;.Dequeue Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove an item from the collection\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pair&lt;PQueue&lt;T&gt;, T&gt; Dequeue ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pair of a new collection without the item, and the item that was removed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/238.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on <a href=\"../../Contents/2/148.html\">PQueue&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/147.html\">PQueue</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/239.html\">ToQueue&lt;T&gt;</a></td>\r\n<td>Convert a sequence to a queue.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/239.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PQueue.ToQueue&lt;T&gt; Method (Seq&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PQueue.ToQueue&lt;T&gt; Method (Seq&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert a sequence to a queue.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/147.html\">PQueue</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static PQueue&lt;T&gt; ToQueue&lt;T&gt; (\n        Seq&lt;T&gt; <i>seq</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">seq</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sequence to convert to a queue.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA queue whose first element is the top of the stack.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/24.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/46.html\">Endian.Swap (Union128)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/47.html\">Endian.Swap (decimal)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/48.html\">Endian.Swap (Union16)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/49.html\">Endian.Swap (short)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/50.html\">Endian.Swap (ushort)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/51.html\">Endian.Swap (uint)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/52.html\">Endian.Swap (int)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/53.html\">Endian.Swap (Union32)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/54.html\">Endian.Swap (ulong)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/55.html\">Endian.Swap (long)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/56.html\">Endian.Swap (Union64)</a></td>\r\n<td>Swap upper and lower bytes.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/240.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnvironment mapping names to values, matching the semantics of lexical scoping.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/241.html\">Bind</a></td>\r\n<td>Bind a value to the given name under this environment.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/242.html\">Find</a></td>\r\n<td>Find the value bound to the key.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/243.html\">GetEnumerator</a></td>\r\n<td>Generate an enumerator for this map.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/244.html\">ToString</a></td>\r\n<td>Generate a string representation of the current environment.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/245.html\">Empty</a></td>\r\n<td>The empty environment.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/246.html\">Item</a></td>\r\n<td>Find the value bound to the key.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/241.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.Bind Method (K, V)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.Bind Method (K, V)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBind a value to the given name under this environment.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Env&lt;K, V&gt; Bind (\n        K <i>key</i>,\n        V <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key under which the value is bound.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being bound.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new Env&lt;V&gt; containing the new binding.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/242.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.Find Method (K)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.Find Method (K)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFind the value bound to the key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public V Find (\n        K <i>key</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to look up.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe latest value corresponding to that key.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/243.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate an enumerator for this map.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;KeyValuePair&lt;K, V&gt;&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns an enumerator over all the bindings in last-in-first-out order.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/244.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate a string representation of the current environment.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the bindings in last-in-first-out-order.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/245.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.Empty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.Empty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe empty environment.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Env&lt;K, V&gt; Empty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/246.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Env&lt;K, V&gt;.Item Property (K)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Env&lt;K, V&gt;.Item Property (K)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFind the value bound to the key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/146.html\">Env&lt;K, V&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public V this [\n        K <i>key</i>\n] { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to look up.\r\n</div>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/247.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Dictionaries Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Dictionaries Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUseful extensions to <span class=\"PseudoLink\">System.Collections.Generic.IDictionary`2</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/145.html\">Dictionaries</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/248.html\">FindOrDefault&lt;K, T&gt;</a></td>\r\n<td>Returns the value named by 'key', or inserts 'otherwise' into the dictionary and returns that.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/249.html\">FindOrOtherwise&lt;K, T&gt;</a></td>\r\n<td>Returns the value named by 'key', or if no such entry exists, returns 'otherwise'.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/250.html\">InsertIfDefault&lt;K, T&gt;</a></td>\r\n<td>Adds the value to the dictionary if it does not already exist.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/248.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Dictionaries.FindOrDefault&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Dictionaries.FindOrDefault&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the value named by 'key', or inserts 'otherwise' into the dictionary and returns that.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/145.html\">Dictionaries</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T FindOrDefault&lt;K, T&gt; (\n        IDictionary&lt;K, T&gt; <i>d</i>,\n        K <i>key</i>,\n        T <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the key.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary.\r\n</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary key.\r\n</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to insert and return if the key is not in the dictionary.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nd[key] if d contains key, and if not, it inserts (key, otherwise), and returns otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/249.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Dictionaries.FindOrOtherwise&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Dictionaries.FindOrOtherwise&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the value named by 'key', or if no such entry exists, returns 'otherwise'.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/145.html\">Dictionaries</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T FindOrOtherwise&lt;K, T&gt; (\n        IDictionary&lt;K, T&gt; <i>d</i>,\n        K <i>key</i>,\n        T <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the key.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary.\r\n</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary key.\r\n</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to insert and return if the key is not in the dictionary.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns d[key] if it exists, or otherwise if it does not.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/25.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/26.html\">Endian.ToBig (short)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/27.html\">Endian.ToBig (ushort)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/28.html\">Endian.ToBig (Union16)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/29.html\">Endian.ToBig (Union32)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/30.html\">Endian.ToBig (int)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/31.html\">Endian.ToBig (uint)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/32.html\">Endian.ToBig (long)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/33.html\">Endian.ToBig (Union64)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/34.html\">Endian.ToBig (ulong)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/35.html\">Endian.ToBig (decimal)</a></td>\r\n<td>Convert the value to big endian.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/250.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Dictionaries.InsertIfDefault&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Dictionaries.InsertIfDefault&lt;K, T&gt; Method (IDictionary&lt;K, T&gt;, K, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdds the value to the dictionary if it does not already exist.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/145.html\">Dictionaries</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool InsertIfDefault&lt;K, T&gt; (\n        IDictionary&lt;K, T&gt; <i>d</i>,\n        K <i>key</i>,\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the key.\r\n</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary.\r\n</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe dictionary key.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to insert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the item was inserted, false if the key already exists.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/251.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt; Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt; Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe interface describing a purely functional collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/252.html\">Add</a></td>\r\n<td>Adds an item to the collection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/253.html\">Remove</a></td>\r\n<td>Overloaded. Remove an item from the collection</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/254.html\">IsEmpty</a></td>\r\n<td>Returns true if the collection is empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/255.html\">Value</a></td>\r\n<td>Returns the item to be removed next from the collection.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/252.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.Add Method (TItem)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.Add Method (TItem)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdds an item to the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TCollection Add (\n        TItem <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item to add.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new collection with the new item.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/253.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.Remove Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.Remove Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove an item from the collection\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/256.html\">ISeq&lt;TCollection, TItem&gt;.Remove (out TItem)</a></td>\r\n<td>Removes an item from the collection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/257.html\">ISeq&lt;TCollection, TItem&gt;.Remove ()</a></td>\r\n<td>Remove an item from the collection</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/254.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.IsEmpty Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.IsEmpty Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the collection is empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract bool IsEmpty { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/255.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the item to be removed next from the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TItem Value { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><span class=\"PseudoLink\">InvalidOperationException</span></td>\r\n<td>Thrown if the collection is empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/256.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.Remove Method (out TItem)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.Remove Method (out TItem)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemoves an item from the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract TCollection Remove (\n        out TItem <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe item removed.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new collection without the item.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/257.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ISeq&lt;TCollection, TItem&gt;.Remove Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ISeq&lt;TCollection, TItem&gt;.Remove Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRemove an item from the collection\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/152.html\">ISeq&lt;TCollection, TItem&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/209.html\">Sasa.Collections</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract Pair&lt;TCollection, TItem&gt; Remove ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pair of a new collection without the item, and the item that was removed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/258.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nString extension methods.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Strings </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/260.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/259.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Token Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Token Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTokens identified by the Tokenize function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Token :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/278.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/26.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static short ToBig (\n        short <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/260.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nString extension methods.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/259.html\">Token</a></td>\r\n<td>Tokens identified by the Tokenize function.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/261.html\">FromBase64</a></td>\r\n<td>Convert a string from a Base64 encoded string to another string.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/262.html\">HardWrapAt</a></td>\r\n<td>Wraps the string at the given column index.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/263.html\">IfNullOrEmpty</a></td>\r\n<td>Ensures returned string is not null or empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/264.html\">IsNullOrEmpty</a></td>\r\n<td>Returns true if string is null or empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/265.html\">Lines</a></td>\r\n<td>Returns the string split into individual lines.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/266.html\">Slice</a></td>\r\n<td>Return a slice of a string delineated by the start and end indices.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/267.html\">SliceEquals</a></td>\r\n<td>Checks the value of a substring.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/268.html\">Split</a></td>\r\n<td>Overloaded. Split the string according to the given options and delimiters.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/269.html\">ToBase64</a></td>\r\n<td>Convert a string to Base64.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/270.html\">ToFilePath</a></td>\r\n<td>Overloaded. Returns a filesystem path given a stream of path components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/271.html\">Tokenize</a></td>\r\n<td>Searches the input stream for a set of tokens;</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/272.html\">Words</a></td>\r\n<td>Returns an array split by whitespace.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/273.html\">WordWrapAt</a></td>\r\n<td>Wraps the string at the given column index.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/261.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.FromBase64 Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.FromBase64 Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert a string from a Base64 encoded string to another string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string FromBase64 (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string the convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unencoded string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/262.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.HardWrapAt Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.HardWrapAt Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps the string at the given column index.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;string&gt; HardWrapAt (\n        string <i>s</i>,\n        int <i>column</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to process.\r\n</div>\r\n<div class=\"CommentParameterName\">column</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe column at which to wrap the string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of strings representing the wrapped lines. String.Length is &lt;= column.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/263.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.IfNullOrEmpty Method (string, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.IfNullOrEmpty Method (string, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEnsures returned string is not null or empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string IfNullOrEmpty (\n        string <i>s</i>,\n        string <i>otherwise</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to test.\r\n</div>\r\n<div class=\"CommentParameterName\">otherwise</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to return if 's is null or empty.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns the string if the not null or of length 0, or 'otherwise' otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/264.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.IsNullOrEmpty Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.IsNullOrEmpty Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if string is null or empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool IsNullOrEmpty (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to test.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the string is null or of length 0.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/265.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Lines Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Lines Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the string split into individual lines.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string[] Lines (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to split.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn array of all the lines in the string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/266.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Slice Method (string, int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Slice Method (string, int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a slice of a string delineated by the start and end indices.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string Slice (\n        string <i>s</i>,\n        int <i>start</i>,\n        int <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to slice.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe start of the slice.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the slice.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string slice.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/267.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.SliceEquals Method (string, int, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.SliceEquals Method (string, int, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks the value of a substring.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool SliceEquals (\n        string <i>first</i>,\n        int <i>start</i>,\n        string <i>sub</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to inspect.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which to check for the substring.\r\n</div>\r\n<div class=\"CommentParameterName\">sub</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to use for comparison.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if string <span class=\"Code\">sub</span> is found at <span class=\"Code\">first</span>[<span class=\"Code\">start</span>].\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/268.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Split Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Split Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSplit the string according to the given options and delimiters.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/276.html\">Strings.Split (string, StringSplitOptions, char[])</a></td>\r\n<td>Split the string according to the given options and delimiters.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/277.html\">Strings.Split (string, StringSplitOptions, string[])</a></td>\r\n<td>Split the string according to the given options and delimiters.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/269.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.ToBase64 Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.ToBase64 Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert a string to Base64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToBase64 (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Base64-encoded string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/27.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ushort ToBig (\n        ushort <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/270.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.ToFilePath Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.ToFilePath Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a filesystem path given a stream of path components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/274.html\">Strings.ToFilePath (IEnumerable&lt;string&gt;)</a></td>\r\n<td>Returns a filesystem path given a stream of path components.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/275.html\">Strings.ToFilePath (string[])</a></td>\r\n<td>Returns a filesystem path given an array of path components.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/271.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Tokenize Method (string, string[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Tokenize Method (string, string[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSearches the input stream for a set of tokens;\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Strings.Token&gt; Tokenize (\n        string <i>input</i>,\n        params string[] <i>tokens</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to search.\r\n</div>\r\n<div class=\"CommentParameterName\">tokens</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe list of tokens to search for.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tokens.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/272.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Words Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Words Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns an array split by whitespace.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string[] Words (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to split.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn array of strings which were separate by whitespace in the original string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/273.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.WordWrapAt Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.WordWrapAt Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps the string at the given column index.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;string&gt; WordWrapAt (\n        string <i>s</i>,\n        int <i>column</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to process.\r\n</div>\r\n<div class=\"CommentParameterName\">column</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe column at which to wrap the string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of strings representing the wrapped lines. String.Length is &lt;= column.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/274.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.ToFilePath Method (IEnumerable&lt;string&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.ToFilePath Method (IEnumerable&lt;string&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a filesystem path given a stream of path components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToFilePath (\n        IEnumerable&lt;string&gt; <i>components</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">components</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe sequence of component paths.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA file system path separated by the OS-specific separator character.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/275.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.ToFilePath Method (string[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.ToFilePath Method (string[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a filesystem path given an array of path components.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToFilePath (\n        params string[] <i>components</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">components</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe array of component paths.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA file system path separated by the OS-specific separator character.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/276.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Split Method (string, StringSplitOptions, char[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Split Method (string, StringSplitOptions, char[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSplit the string according to the given options and delimiters.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string[] Split (\n        string <i>input</i>,\n        StringSplitOptions <i>options</i>,\n        params char[] <i>delimiter</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string.\r\n</div>\r\n<div class=\"CommentParameterName\">options</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe options to use when splitting the string.\r\n</div>\r\n<div class=\"CommentParameterName\">delimiter</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delimiters used to split the string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe split string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/277.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Split Method (string, StringSplitOptions, string[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Split Method (string, StringSplitOptions, string[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSplit the string according to the given options and delimiters.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/258.html\">Strings</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string[] Split (\n        string <i>input</i>,\n        StringSplitOptions <i>options</i>,\n        params string[] <i>delimiter</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string.\r\n</div>\r\n<div class=\"CommentParameterName\">options</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe options to use when splitting the string.\r\n</div>\r\n<div class=\"CommentParameterName\">delimiter</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delimiters used to split the string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe split string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/278.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Token Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Token Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTokens identified by the Tokenize function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/259.html\">Strings.Token</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/279.html\">Index</a></td>\r\n<td>The index marking the beginning of the token.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/280.html\">Input</a></td>\r\n<td>The input string being searched.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/281.html\">Tok</a></td>\r\n<td>The token identified.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/279.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Token.Index Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Token.Index Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe index marking the beginning of the token.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/259.html\">Strings.Token</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int Index { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/28.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (Union16)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (Union16)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union16 ToBig (\n        Union16 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/280.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Token.Input Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Token.Input Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe input string being searched.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/259.html\">Strings.Token</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string Input { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/281.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Strings.Token.Tok Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Strings.Token.Tok Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe token identified.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/259.html\">Strings.Token</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/213.html\">Sasa.String</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string Tok { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/282.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Url64 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Url64 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncodes bytes into a base64 alphabet that is safe to embed into URLs.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/214.html\">Sasa.Web</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Url64 </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/283.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/283.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Url64 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Url64 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncodes bytes into a base64 alphabet that is safe to embed into URLs.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/282.html\">Url64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/214.html\">Sasa.Web</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/284.html\">FromUrl64</a></td>\r\n<td>Convert from a Url64 string representation back to binary.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/285.html\">ToUrl64</a></td>\r\n<td>Convert bytes to a Url64 string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/284.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Url64.FromUrl64 Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Url64.FromUrl64 Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert from a Url64 string representation back to binary.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/282.html\">Url64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/214.html\">Sasa.Web</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static byte[] FromUrl64 (\n        string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string in Url64 form.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded bytes corresponding to the given string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/285.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Url64.ToUrl64 Method (byte[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Url64.ToUrl64 Method (byte[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert bytes to a Url64 string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/282.html\">Url64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/214.html\">Sasa.Web</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToUrl64 (\n        byte[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binary data.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe equivalent Url64 encoded string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/286.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to IEnumerable.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Enumerables </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/288.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/287.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip functions merge streams of values together into tuples.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Zips </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/304.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/288.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions to IEnumerable.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/289.html\">Append&lt;T&gt;</a></td>\r\n<td>Append an item to the end of an enumeration.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/290.html\">Apply&lt;T&gt;</a></td>\r\n<td>Apply a function to each element of the collection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/291.html\">CompareTo&lt;T&gt;</a></td>\r\n<td>Performs an ordered comparison on two sequences.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/292.html\">Consume&lt;T&gt;</a></td>\r\n<td>Consumes the entire sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/293.html\">CopyTo&lt;T&gt;</a></td>\r\n<td>Copy the elements of the stream to the given array starting at the given index.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/294.html\">Do&lt;T&gt;</a></td>\r\n<td>Consumes a sequence while applying a function to each element.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/295.html\">Flatten&lt;T&gt;</a></td>\r\n<td>Flattens a nested enumerable.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/296.html\">Format&lt;T&gt;</a></td>\r\n<td>Overloaded. Formats each element of the stream with the given separator between them.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/297.html\">Generate&lt;T&gt;</a></td>\r\n<td>Generate a sequence of elements given a generator function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/298.html\">Push&lt;T&gt;</a></td>\r\n<td>Adds the given item to the beginning of a sequence.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/299.html\">Transpose&lt;T&gt;</a></td>\r\n<td>Swaps the rows and columns of a nested sequence.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/289.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Append&lt;T&gt; Method (IEnumerable&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Append&lt;T&gt; Method (IEnumerable&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAppend an item to the end of an enumeration.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;T&gt; Append&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        T <i>last</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enumeration being modified.\r\n</div>\r\n<div class=\"CommentParameterName\">last</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe element being appended to the enumeration.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration with a new last element.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/29.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (Union32)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (Union32)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union32 ToBig (\n        Union32 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/290.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Apply&lt;T&gt; Method (IEnumerable&lt;T&gt;, Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Apply&lt;T&gt; Method (IEnumerable&lt;T&gt;, Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApply a function to each element of the collection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;T&gt; Apply&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        Action&lt;T&gt; <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enumerator.\r\n</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to aplpy.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/291.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.CompareTo&lt;T&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.CompareTo&lt;T&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerforms an ordered comparison on two sequences.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int CompareTo&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;T&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of elements in the sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first sequence.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nZero if two sequences are equal, greater than zero if <span class=\"Code\">first</span>\r\n            &gt; <span class=\"Code\">second</span>, less than zero otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/292.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Consume&lt;T&gt; Method (IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Consume&lt;T&gt; Method (IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConsumes the entire sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Consume&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of elements in the sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source sequence to consume.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis is primarily of use to enumerators that induce side-effects while\r\n            producing values. Consume forces the side-effects eagerly instead of\r\n            lazily.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/293.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.CopyTo&lt;T&gt; Method (IEnumerable&lt;T&gt;, T[], int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.CopyTo&lt;T&gt; Method (IEnumerable&lt;T&gt;, T[], int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCopy the elements of the stream to the given array starting at the given index.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void CopyTo&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        T[] <i>array</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of array elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source sequence.\r\n</div>\r\n<div class=\"CommentParameterName\">array</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe target array.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe starting index of the array.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/294.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Do&lt;T&gt; Method (IEnumerable&lt;T&gt;, Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Do&lt;T&gt; Method (IEnumerable&lt;T&gt;, Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConsumes a sequence while applying a function to each element.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Do&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        Action&lt;T&gt; <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enumerator.\r\n</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to apply.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/295.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Flatten&lt;T&gt; Method (IEnumerable&lt;IEnumerable&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Flatten&lt;T&gt; Method (IEnumerable&lt;IEnumerable&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFlattens a nested enumerable.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;T&gt; Flatten&lt;T&gt; (\n        IEnumerable&lt;IEnumerable&lt;T&gt;&gt; <i>source</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe nested enumerable.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA flattened stream.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/296.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Format&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Format&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFormats each element of the stream with the given separator between them.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/300.html\">Enumerables.Format&lt;T&gt; (IEnumerable&lt;T&gt;, string)</a></td>\r\n<td>Formats each element of the stream with the given separator between them.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/301.html\">Enumerables.Format&lt;T&gt; (IEnumerable&lt;T&gt;, string, Func&lt;T, string&gt;)</a></td>\r\n<td>Formats each element of the stream with the given separator between them.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/302.html\">Enumerables.Format&lt;T&gt; (IEnumerable&lt;T&gt;, string, StringBuilder)</a></td>\r\n<td>Formats each element of the stream with the given separator between them.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/303.html\">Enumerables.Format&lt;T&gt; (IEnumerable&lt;T&gt;, string, StringBuilder, Func&lt;T, string&gt;)</a></td>\r\n<td>Formats each element of the stream with the given separator between them.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/297.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Generate&lt;T&gt; Method (T, Func&lt;T, Option&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Generate&lt;T&gt; Method (T, Func&lt;T, Option&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate a sequence of elements given a generator function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;T&gt; Generate&lt;T&gt; (\n        T <i>seed</i>,\n        Func&lt;T, Option&lt;T&gt;&gt; <i>generator</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of sequence elements.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">seed</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe initial seed value.\r\n</div>\r\n<div class=\"CommentParameterName\">generator</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe generator function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA sequence of elements.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/298.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Push&lt;T&gt; Method (T, IEnumerable&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Push&lt;T&gt; Method (T, IEnumerable&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdds the given item to the beginning of a sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;T&gt; Push&lt;T&gt; (\n        T <i>head</i>,\n        IEnumerable&lt;T&gt; <i>tail</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">head</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe new first element of the enumeration.\r\n</div>\r\n<div class=\"CommentParameterName\">tail</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe rest of the enumeration.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration with 'head' as the first value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/299.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Transpose&lt;T&gt; Method (IEnumerable&lt;IEnumerable&lt;T&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Transpose&lt;T&gt; Method (IEnumerable&lt;IEnumerable&lt;T&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwaps the rows and columns of a nested sequence.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;IEnumerable&lt;T&gt;&gt; Transpose&lt;T&gt; (\n        IEnumerable&lt;IEnumerable&lt;T&gt;&gt; <i>source</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of elements in the sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source sequence.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA sequence whose rows and columns are swapped.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nNote that this method will handle jagged sequences, but transposing\r\n            twice will not necessarily recover the same sequence as the original\r\n            input. All the jagged entries will be pushed to the last row.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/3.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 32-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/4.html\">Union32 (int)</a></td>\r\n<td>Construct a flat 32-bit union from a signed value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/5.html\">Union32 (uint)</a></td>\r\n<td>Construct a flat 32-bit union from an unsigned value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/6.html\">Union32 (float)</a></td>\r\n<td>Construct a flat 32-bit union from an unsigned value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/30.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int ToBig (\n        int <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/300.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFormats each element of the stream with the given separator between them.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string Format&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        string <i>separator</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream to format.\r\n</div>\r\n<div class=\"CommentParameterName\">separator</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe element separating each element of the stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA formatted string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/301.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, Func&lt;T, string&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, Func&lt;T, string&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFormats each element of the stream with the given separator between them.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string Format&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        string <i>separator</i>,\n        Func&lt;T, string&gt; <i>toString</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream to format.\r\n</div>\r\n<div class=\"CommentParameterName\">separator</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe element separating each element of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">toString</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function used to convert each element to a string.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA formatted string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/302.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, StringBuilder)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, StringBuilder)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFormats each element of the stream with the given separator between them.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Format&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        string <i>separator</i>,\n        StringBuilder <i>output</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream to format.\r\n</div>\r\n<div class=\"CommentParameterName\">separator</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe element separating each element of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe StringBuilder to which the output is written.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/303.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, StringBuilder, Func&lt;T, string&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enumerables.Format&lt;T&gt; Method (IEnumerable&lt;T&gt;, string, StringBuilder, Func&lt;T, string&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFormats each element of the stream with the given separator between them.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/286.html\">Enumerables</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void Format&lt;T&gt; (\n        IEnumerable&lt;T&gt; <i>source</i>,\n        string <i>separator</i>,\n        StringBuilder <i>output</i>,\n        Func&lt;T, string&gt; <i>toString</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type being enumerated.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream to format.\r\n</div>\r\n<div class=\"CommentParameterName\">separator</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe element separating each element of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe StringBuilder to which the output is written.\r\n</div>\r\n<div class=\"CommentParameterName\">toString</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function used to convert each element to a string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/304.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip functions merge streams of values together into tuples.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/305.html\">Zip&lt;T, U&gt;</a></td>\r\n<td>Pair the elements of two streams.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/306.html\">Zip&lt;T, U, V&gt;</a></td>\r\n<td>Overloaded. Zip a paired stream with a third stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/307.html\">Zip&lt;T, U, V, Q&gt;</a></td>\r\n<td>Overloaded. Zip a three element stream with a fourth stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/308.html\">ZipWith&lt;T, U, R&gt;</a></td>\r\n<td>Zip two streams to a user-defined type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/309.html\">ZipWith&lt;T, U, V, R&gt;</a></td>\r\n<td>Overloaded. Zip a paired stream with a third stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/310.html\">ZipWith&lt;T, U, V, Q, R&gt;</a></td>\r\n<td>Overloaded. Zip two paired streams.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/305.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPair the elements of two streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Pair&lt;T, U&gt;&gt; Zip&lt;T, U&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/306.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a paired stream with a third stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/316.html\">Zips.Zip&lt;T, U, V&gt; (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;)</a></td>\r\n<td>Zip the elements of three streams.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/317.html\">Zips.Zip&lt;T, U, V&gt; (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;)</a></td>\r\n<td>Zip a paired stream with a third stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/307.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V, Q&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V, Q&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a three element stream with a fourth stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/318.html\">Zips.Zip&lt;T, U, V, Q&gt; (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</a></td>\r\n<td>Zip the elements of four streams.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/319.html\">Zips.Zip&lt;T, U, V, Q&gt; (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</a></td>\r\n<td>Zip a paired stream with two more streams.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/320.html\">Zips.Zip&lt;T, U, V, Q&gt; (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;)</a></td>\r\n<td>Zip a three element stream with a fourth stream.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/321.html\">Zips.Zip&lt;T, U, V, Q&gt; (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;)</a></td>\r\n<td>Zip two paired streams.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/308.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip two streams to a user-defined type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, R&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>,\n        Func&lt;T, U, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/309.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a paired stream with a third stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/311.html\">Zips.ZipWith&lt;T, U, V, R&gt; (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</a></td>\r\n<td>Zip three streams to a user-defined type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/312.html\">Zips.ZipWith&lt;T, U, V, R&gt; (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</a></td>\r\n<td>Zip a paired stream with a third stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/31.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static uint ToBig (\n        uint <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/310.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, Q, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, Q, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip two paired streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/313.html\">Zips.ZipWith&lt;T, U, V, Q, R&gt; (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</a></td>\r\n<td>Zip four streams to a user-defined type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/314.html\">Zips.ZipWith&lt;T, U, V, Q, R&gt; (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;, Func&lt;T, U, V, Q, R&gt;)</a></td>\r\n<td>Zip two paired streams.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/315.html\">Zips.ZipWith&lt;T, U, V, Q, R&gt; (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</a></td>\r\n<td>Zip a three element stream with a fourth stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/311.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip three streams to a user-defined type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, V, R&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>,\n        IEnumerable&lt;V&gt; <i>third</i>,\n        Func&lt;T, U, V, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/312.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, R&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, R&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, Func&lt;T, U, V, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a paired stream with a third stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, V, R&gt; (\n        IEnumerable&lt;Pair&lt;T, U&gt;&gt; <i>first</i>,\n        IEnumerable&lt;V&gt; <i>second</i>,\n        Func&lt;T, U, V, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/313.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip four streams to a user-defined type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, V, Q, R&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>,\n        IEnumerable&lt;V&gt; <i>third</i>,\n        IEnumerable&lt;Q&gt; <i>fourth</i>,\n        Func&lt;T, U, V, Q, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/314.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;, Func&lt;T, U, V, Q, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;, Func&lt;T, U, V, Q, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip two paired streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, V, Q, R&gt; (\n        IEnumerable&lt;Pair&lt;T, U&gt;&gt; <i>first</i>,\n        IEnumerable&lt;Pair&lt;V, Q&gt;&gt; <i>second</i>,\n        Func&lt;T, U, V, Q, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/315.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.ZipWith&lt;T, U, V, Q, R&gt; Method (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;, Func&lt;T, U, V, Q, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a three element stream with a fourth stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;R&gt; ZipWith&lt;T, U, V, Q, R&gt; (\n        IEnumerable&lt;Triple&lt;T, U, V&gt;&gt; <i>first</i>,\n        IEnumerable&lt;Q&gt; <i>second</i>,\n        Func&lt;T, U, V, Q, R&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the returned stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function mapping the given stream values into the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of return values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/316.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip the elements of three streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Triple&lt;T, U, V&gt;&gt; Zip&lt;T, U, V&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>,\n        IEnumerable&lt;V&gt; <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/317.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a paired stream with a third stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Triple&lt;T, U, V&gt;&gt; Zip&lt;T, U, V&gt; (\n        IEnumerable&lt;Pair&lt;T, U&gt;&gt; <i>first</i>,\n        IEnumerable&lt;V&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/318.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;T&gt;, IEnumerable&lt;U&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip the elements of four streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Quad&lt;T, U, V, Q&gt;&gt; Zip&lt;T, U, V, Q&gt; (\n        IEnumerable&lt;T&gt; <i>first</i>,\n        IEnumerable&lt;U&gt; <i>second</i>,\n        IEnumerable&lt;V&gt; <i>third</i>,\n        IEnumerable&lt;Q&gt; <i>fourth</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/319.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;V&gt;, IEnumerable&lt;Q&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a paired stream with two more streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Quad&lt;T, U, V, Q&gt;&gt; Zip&lt;T, U, V, Q&gt; (\n        IEnumerable&lt;Pair&lt;T, U&gt;&gt; <i>first</i>,\n        IEnumerable&lt;V&gt; <i>second</i>,\n        IEnumerable&lt;Q&gt; <i>third</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/32.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static long ToBig (\n        long <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/320.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Triple&lt;T, U, V&gt;&gt;, IEnumerable&lt;Q&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip a three element stream with a fourth stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Quad&lt;T, U, V, Q&gt;&gt; Zip&lt;T, U, V, Q&gt; (\n        IEnumerable&lt;Triple&lt;T, U, V&gt;&gt; <i>first</i>,\n        IEnumerable&lt;Q&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/321.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Zips.Zip&lt;T, U, V, Q&gt; Method (IEnumerable&lt;Pair&lt;T, U&gt;&gt;, IEnumerable&lt;Pair&lt;V, Q&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nZip two paired streams.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/287.html\">Zips</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/212.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Quad&lt;T, U, V, Q&gt;&gt; Zip&lt;T, U, V, Q&gt; (\n        IEnumerable&lt;Pair&lt;T, U&gt;&gt; <i>first</i>,\n        IEnumerable&lt;Pair&lt;V, Q&gt;&gt; <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second stream.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third stream.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth stream.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first stream.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of tupled values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/322.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTyped delegate extension methods.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Func </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/323.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/323.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTyped delegate extension methods.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/324.html\">Coerce&lt;TFunc&gt;</a></td>\r\n<td>Coerces one delegate type to another.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/325.html\">Const&lt;TInput, TConst&gt;</a></td>\r\n<td>Constructs a function that simply returns a constant value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/326.html\">Curry&lt;T, U&gt;</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/327.html\">Curry&lt;T, U, R&gt;</a></td>\r\n<td>Overloaded. Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/328.html\">Curry&lt;T, U, V, R&gt;</a></td>\r\n<td>Overloaded. Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/329.html\">Curry&lt;T, U, V, Q, R&gt;</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/330.html\">Empty&lt;T&gt;</a></td>\r\n<td>Overloaded. Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/331.html\">Empty&lt;T, U&gt;</a></td>\r\n<td>Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/332.html\">Empty&lt;T, U, R&gt;</a></td>\r\n<td>Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/333.html\">Empty&lt;T, U, R, V&gt;</a></td>\r\n<td>Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/334.html\">Fix&lt;T, R&gt;</a></td>\r\n<td>Compute the fixpoint of a given function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/335.html\">Fix&lt;T, U, R&gt;</a></td>\r\n<td>Compute the fixpoint of a given function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/336.html\">Id&lt;T&gt;</a></td>\r\n<td>The identity function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/337.html\">Tuple&lt;T, U&gt;</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a pair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/338.html\">Tuple&lt;T, U, R&gt;</a></td>\r\n<td>Overloaded. Lift a multi-arg function to a single-arg function that takes a pair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/339.html\">Tuple&lt;T, U, V, R&gt;</a></td>\r\n<td>Overloaded. Lift a multi-arg function to a single-arg function that takes a triple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/340.html\">Tuple&lt;T, U, V, Q, R&gt;</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a quad.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/324.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Coerce&lt;TFunc&gt; Method (Delegate)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Coerce&lt;TFunc&gt; Method (Delegate)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCoerces one delegate type to another.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static TFunc Coerce&lt;TFunc&gt; (\n        Delegate <i>func</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where TFunc</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TFunc</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return delegate type\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">func</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source delegate to coerce.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate of the expected type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nInspired by:\r\n            http://jacobcarpenters.blogspot.com/2006/06/cast-delegate.html\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/325.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Const&lt;TInput, TConst&gt; Method (TConst)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Const&lt;TInput, TConst&gt; Method (TConst)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstructs a function that simply returns a constant value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;TInput, TConst&gt; Const&lt;TInput, TConst&gt; (\n        TConst <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TInput</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of input value.\r\n</div>\r\n<div class=\"CommentParameterName\">TConst</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nSimply returns <span class=\"Code\">value</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/326.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U&gt; Method (Action&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U&gt; Method (Action&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Action&lt;U&gt;&gt; Curry&lt;T, U&gt; (\n        Action&lt;T, U&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/327.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/345.html\">Func.Curry&lt;T, U, R&gt; (Func&lt;T, U, R&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/346.html\">Func.Curry&lt;T, U, V&gt; (Action&lt;T, U, V&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/328.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, V, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, V, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/347.html\">Func.Curry&lt;T, U, V, R&gt; (Func&lt;T, U, V, R&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/348.html\">Func.Curry&lt;T, U, V, Q&gt; (Action&lt;T, U, V, Q&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg curried function.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/329.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, V, Q, R&gt; Method (Func&lt;T, U, V, Q, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, V, Q, R&gt; Method (Func&lt;T, U, V, Q, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Func&lt;U, Func&lt;V, Func&lt;Q, R&gt;&gt;&gt;&gt; Curry&lt;T, U, V, Q, R&gt; (\n        Func&lt;T, U, V, Q, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/33.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (Union64)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (Union64)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union64 ToBig (\n        Union64 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/330.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/349.html\">Func.Empty&lt;T&gt; (Action)</a></td>\r\n<td>Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/350.html\">Func.Empty&lt;T&gt; (Action&lt;T&gt;)</a></td>\r\n<td>Wraps an action that returns void into a function that returns Empty.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/331.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T, U&gt; Method (Action&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T, U&gt; Method (Action&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, U, Empty&gt; Empty&lt;T, U&gt; (\n        Action&lt;T, U&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate that returns Empty on invocation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/332.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T, U, R&gt; Method (Action&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T, U, R&gt; Method (Action&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, U, R, Empty&gt; Empty&lt;T, U, R&gt; (\n        Action&lt;T, U, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate that returns Empty on invocation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/333.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T, U, R, V&gt; Method (Action&lt;T, U, R, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T, U, R, V&gt; Method (Action&lt;T, U, R, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, U, R, V, Empty&gt; Empty&lt;T, U, R, V&gt; (\n        Action&lt;T, U, R, V&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate that returns Empty on invocation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/334.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Fix&lt;T, R&gt; Method (Func&lt;Func&lt;T, R&gt;, Func&lt;T, R&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Fix&lt;T, R&gt; Method (Func&lt;Func&lt;T, R&gt;, Func&lt;T, R&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the fixpoint of a given function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, R&gt; Fix&lt;T, R&gt; (\n        Func&lt;Func&lt;T, R&gt;, Func&lt;T, R&gt;&gt; <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe argument type.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function describing the body of the recursive function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA recursive definition of the given function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/335.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Fix&lt;T, U, R&gt; Method (Func&lt;Func&lt;T, U, R&gt;, Func&lt;T, U, R&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Fix&lt;T, U, R&gt; Method (Func&lt;Func&lt;T, U, R&gt;, Func&lt;T, U, R&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the fixpoint of a given function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, U, R&gt; Fix&lt;T, U, R&gt; (\n        Func&lt;Func&lt;T, U, R&gt;, Func&lt;T, U, R&gt;&gt; <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first argument type.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second argument type.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe return type.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function describing the body of the recursive function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA recursive definition of the given function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/336.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Id&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Id&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe identity function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Id&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value to return.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to return.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nSimply returns <span class=\"Code\">value</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/337.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U&gt; Method (Action&lt;T, U&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U&gt; Method (Action&lt;T, U&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Action&lt;Pair&lt;T, U&gt;&gt; Tuple&lt;T, U&gt; (\n        Action&lt;T, U&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/338.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/341.html\">Func.Tuple&lt;T, U, R&gt; (Func&lt;T, U, R&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a pair.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/342.html\">Func.Tuple&lt;T, U, V&gt; (Action&lt;T, U, V&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a triple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/339.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, V, R&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, V, R&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/343.html\">Func.Tuple&lt;T, U, V, R&gt; (Func&lt;T, U, V, R&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a triple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/344.html\">Func.Tuple&lt;T, U, V, Q&gt; (Action&lt;T, U, V, Q&gt;)</a></td>\r\n<td>Lift a multi-arg function to a single-arg function that takes a quad.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/34.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ulong ToBig (\n        ulong <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/340.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, V, Q, R&gt; Method (Func&lt;T, U, V, Q, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, V, Q, R&gt; Method (Func&lt;T, U, V, Q, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a quad.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;Quad&lt;T, U, V, Q&gt;, R&gt; Tuple&lt;T, U, V, Q, R&gt; (\n        Func&lt;T, U, V, Q, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/341.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, R&gt; Method (Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, R&gt; Method (Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a pair.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;Pair&lt;T, U&gt;, R&gt; Tuple&lt;T, U, R&gt; (\n        Func&lt;T, U, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/342.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Action&lt;Triple&lt;T, U, V&gt;&gt; Tuple&lt;T, U, V&gt; (\n        Action&lt;T, U, V&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/343.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, V, R&gt; Method (Func&lt;T, U, V, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, V, R&gt; Method (Func&lt;T, U, V, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a triple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;Triple&lt;T, U, V&gt;, R&gt; Tuple&lt;T, U, V, R&gt; (\n        Func&lt;T, U, V, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/344.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Tuple&lt;T, U, V, Q&gt; Method (Action&lt;T, U, V, Q&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Tuple&lt;T, U, V, Q&gt; Method (Action&lt;T, U, V, Q&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg function that takes a quad.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Action&lt;Quad&lt;T, U, V, Q&gt;&gt; Tuple&lt;T, U, V, Q&gt; (\n        Action&lt;T, U, V, Q&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/345.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, R&gt; Method (Func&lt;T, U, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, R&gt; Method (Func&lt;T, U, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Func&lt;U, R&gt;&gt; Curry&lt;T, U, R&gt; (\n        Func&lt;T, U, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/346.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, V&gt; Method (Action&lt;T, U, V&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Func&lt;U, Action&lt;V&gt;&gt;&gt; Curry&lt;T, U, V&gt; (\n        Action&lt;T, U, V&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/347.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, V, R&gt; Method (Func&lt;T, U, V, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, V, R&gt; Method (Func&lt;T, U, V, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Func&lt;U, Func&lt;V, R&gt;&gt;&gt; Curry&lt;T, U, V, R&gt; (\n        Func&lt;T, U, V, R&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/348.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Curry&lt;T, U, V, Q&gt; Method (Action&lt;T, U, V, Q&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Curry&lt;T, U, V, Q&gt; Method (Action&lt;T, U, V, Q&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLift a multi-arg function to a single-arg curried function.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Func&lt;U, Func&lt;V, Action&lt;Q&gt;&gt;&gt;&gt; Curry&lt;T, U, V, Q&gt; (\n        Action&lt;T, U, V, Q&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the first argument.\r\n</div>\r\n<div class=\"CommentParameterName\">U</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the second argument.\r\n</div>\r\n<div class=\"CommentParameterName\">V</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the third argument.\r\n</div>\r\n<div class=\"CommentParameterName\">Q</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the fourth argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function to curry.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA curried function.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/349.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T&gt; Method (Action)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T&gt; Method (Action)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;Empty&gt; Empty&lt;T&gt; (\n        Action <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the function argument.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate that returns Empty on invocation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/35.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.ToBig Method (decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.ToBig Method (decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value to big endian.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static decimal ToBig (\n        decimal <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe host endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nBig endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/350.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Func.Empty&lt;T&gt; Method (Action&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Func.Empty&lt;T&gt; Method (Action&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWraps an action that returns void into a function that returns Empty.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/322.html\">Func</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/211.html\">Sasa.Func</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, Empty&gt; Empty&lt;T&gt; (\n        Action&lt;T&gt; <i>fn</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">fn</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate to wrap.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new delegate that returns Empty on invocation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/351.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions for System.Enum.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Enums </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/352.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/352.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions for System.Enum.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/353.html\">IsDefined&lt;E&gt;</a></td>\r\n<td>Returns true if the value is valid for the given enum type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/354.html\">Names&lt;E&gt;</a></td>\r\n<td>Retrieves a sequence of the values of the constants in a specified enumeration.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/355.html\">ToEnum&lt;E&gt;</a></td>\r\n<td>Overloaded. Parses an enumeration value from the string representation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/356.html\">TryParse&lt;E&gt;</a></td>\r\n<td>Overloaded. Attempt to parse the given string as an enum.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/357.html\">Values&lt;E&gt;</a></td>\r\n<td>Retrieves a sequence of the values of the constants in a specified enumeration.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/353.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.IsDefined&lt;E&gt; Method (E)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.IsDefined&lt;E&gt; Method (E)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the value is valid for the given enum type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool IsDefined&lt;E&gt; (\n        E <i>e</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enum value to test.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the value is valid for the enum.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/354.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.Names&lt;E&gt; Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.Names&lt;E&gt; Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRetrieves a sequence of the values of the constants in a specified enumeration.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;string&gt; Names&lt;E&gt; ()</pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA sequence of the string representations of the enumeration constants.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/355.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.ToEnum&lt;E&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.ToEnum&lt;E&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParses an enumeration value from the string representation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/358.html\">Enums.ToEnum&lt;E&gt; (string)</a></td>\r\n<td>Parses an enumeration value from the string representation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/359.html\">Enums.ToEnum&lt;E&gt; (string, bool)</a></td>\r\n<td>Parses an enumeration value from the string representation.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/356.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.TryParse&lt;E&gt; Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.TryParse&lt;E&gt; Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempt to parse the given string as an enum.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/360.html\">Enums.TryParse&lt;E&gt; (string, out E)</a></td>\r\n<td>Attempt to parse the given string as an enum.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/361.html\">Enums.TryParse&lt;E&gt; (string, bool, out E)</a></td>\r\n<td>Attempt to parse the given string as an enum.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/357.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.Values&lt;E&gt; Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.Values&lt;E&gt; Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRetrieves a sequence of the values of the constants in a specified enumeration.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;E&gt; Values&lt;E&gt; ()</pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA typed sequence of the enumeration constants.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/358.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.ToEnum&lt;E&gt; Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.ToEnum&lt;E&gt; Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParses an enumeration value from the string representation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static E ToEnum&lt;E&gt; (\n        string <i>e</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string representation of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enum corresponding to the string representation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/359.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.ToEnum&lt;E&gt; Method (string, bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.ToEnum&lt;E&gt; Method (string, bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParses an enumeration value from the string representation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static E ToEnum&lt;E&gt; (\n        string <i>e</i>,\n        bool <i>ignoreCase</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string representation of the enum.\r\n</div>\r\n<div class=\"CommentParameterName\">ignoreCase</div>\r\n<div class=\"ParameterCommentContainer\">\r\nIndicates whether the parse is case-sensitive.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enum corresponding to the string representation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/36.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (Union16)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (Union16)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union16 FromBig (\n        Union16 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/360.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.TryParse&lt;E&gt; Method (string, out E)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.TryParse&lt;E&gt; Method (string, out E)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempt to parse the given string as an enum.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool TryParse&lt;E&gt; (\n        string <i>enumString</i>,\n        out E <i>enumValue</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">enumString</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string representation of the num.\r\n</div>\r\n<div class=\"CommentParameterName\">enumValue</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enum corresponding to the string representation if\r\n            successful, or the default value otherwise.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the parse succeeded, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/361.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Enums.TryParse&lt;E&gt; Method (string, bool, out E)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Enums.TryParse&lt;E&gt; Method (string, bool, out E)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAttempt to parse the given string as an enum.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/351.html\">Enums</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/210.html\">Sasa.Enum</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool TryParse&lt;E&gt; (\n        string <i>enumString</i>,\n        bool <i>ignoreCase</i>,\n        out E <i>enumValue</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where E</td>\n<td>&nbsp;: Enum</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">E</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the enum.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">enumString</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string representation of the num.\r\n</div>\r\n<div class=\"CommentParameterName\">ignoreCase</div>\r\n<div class=\"ParameterCommentContainer\">\r\nIndicates whether the parse is case-sensitive.\r\n</div>\r\n<div class=\"CommentParameterName\">enumValue</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe enum corresponding to the string representation if\r\n            successful, or the default value otherwise.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the parse succeeded, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/362.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Dynamics Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Dynamics Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader5\" onclick=\"javascript: SetSectionVisibility(5, true); SetExpandCollapseAllToCollapseAll();\">Interfaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Statically typed, safe reflection abstractions.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/363.html\">DynamicType</a></td>\r\n<td>Operations on the dynamic type of an object.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a></td>\r\n<td>A thread-safe, user-controlled method cache.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/365.html\">Type&lt;T&gt;</a></td>\r\n<td>A reflector generator.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/366.html\">Types&lt;K&gt;</a></td>\r\n<td>A thread-safe, user-controlled cache of types.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader5\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg5\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(5);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(5);\">\r\nPublic Interfaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv5\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/2/367.html\">IReflected</a></td>\r\n<td>Any objects implementing this interface are assumed to\r\n            provide their own reflection callback.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/2/368.html\">IReflector</a></td>\r\n<td>Statically-typed, safe reflection.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/363.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOperations on the dynamic type of an object.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class DynamicType </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/382.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/364.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe, user-controlled method cache.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Methods&lt;K&gt; :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of key used to track methods.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nOnly static methods are currently supported.\r\n            \r\n            All methods are cached as one of either Action&lt;*&gt; or Func&lt;*&gt; overloads.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/372.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/365.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Type&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Type&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA reflector generator.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Type&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of object to inspect.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/369.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/366.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types&lt;K&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types&lt;K&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe, user-controlled cache of types.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Types&lt;K&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">K</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to map to types.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/378.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/367.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflected Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflected Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAny objects implementing this interface are assumed to\r\n            provide their own reflection callback.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IReflected </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/409.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/368.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nStatically-typed, safe reflection.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IReflector </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis interface provides implementors the ability to efficiently view and modify\r\n            objects via reflection, with complete type safety.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/387.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/369.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Type&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Type&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA reflector generator.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/365.html\">Type&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/370.html\">Create</a></td>\r\n<td>Return a parameterless constructor for <span class=\"Code\">T</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/371.html\">Reflect</a></td>\r\n<td>Return a function that can efficiently inspect and/or modify the internals\r\n            of any object of type <span class=\"Code\">T</span>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/37.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static short FromBig (\n        short <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/370.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Type&lt;T&gt;.Create Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Type&lt;T&gt;.Create Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a parameterless constructor for <span class=\"Code\">T</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/365.html\">Type&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T&gt; Create { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/371.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Type&lt;T&gt;.Reflect Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Type&lt;T&gt;.Reflect Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a function that can efficiently inspect and/or modify the internals\r\n            of any object of type <span class=\"Code\">T</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/365.html\">Type&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;T, IReflector, FieldInfo, T&gt; Reflect { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/372.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe, user-controlled method cache.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/373.html\">Cache&lt;R&gt;</a></td>\r\n<td>Explicitly cache the corresponding delegate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/374.html\">Contains</a></td>\r\n<td>Returns true if the cache contains an entry with the specified key.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/375.html\">Create</a></td>\r\n<td>Construct a new instance of the method cache.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/376.html\">Instance&lt;R&gt;</a></td>\r\n<td>Load a delegate by key.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/377.html\">Method&lt;R&gt;</a></td>\r\n<td>Load a delegate by key.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/373.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt;.Cache&lt;R&gt; Method (K, R)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt;.Cache&lt;R&gt; Method (K, R)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExplicitly cache the corresponding delegate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public R Cache&lt;R&gt; (\n        K <i>key</i>,\n        R <i>value</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where R</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate type to cache.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key under which to cache the delegate.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe delegate instance.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/374.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt;.Contains Method (K)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt;.Contains Method (K)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the cache contains an entry with the specified key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Contains (\n        K <i>key</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to check.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if an entry with the key exists.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/375.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt;.Create Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt;.Create Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new instance of the method cache.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Methods&lt;K&gt; Create ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/376.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt;.Instance&lt;R&gt; Method (K, Func&lt;K, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt;.Instance&lt;R&gt; Method (K, Func&lt;K, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLoad a delegate by key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public R Instance&lt;R&gt; (\n        K <i>key</i>,\n        Func&lt;K, R&gt; <i>find</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where R</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return delegate.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key under which this delegate is cached.\r\n</div>\r\n<div class=\"CommentParameterName\">find</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA callback to find the MethodInfo for the corresponding key.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA delegate for the static method.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/377.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Methods&lt;K&gt;.Method&lt;R&gt; Method (K, Func&lt;K, MethodInfo&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Methods&lt;K&gt;.Method&lt;R&gt; Method (K, Func&lt;K, MethodInfo&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLoad a delegate by key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/364.html\">Methods&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public R Method&lt;R&gt; (\n        K <i>key</i>,\n        Func&lt;K, MethodInfo&gt; <i>find</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where R</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return delegate.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key under which this delegate is cached.\r\n</div>\r\n<div class=\"CommentParameterName\">find</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA callback to find the MethodInfo for the corresponding key.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA delegate for the static method.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/378.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types&lt;K&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types&lt;K&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA thread-safe, user-controlled cache of types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/366.html\">Types&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/379.html\">Contains</a></td>\r\n<td>Returns true if the cache contains an entry with the specified key.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/380.html\">Get</a></td>\r\n<td>Get the type saved under the given key.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/381.html\">Set</a></td>\r\n<td>Explicitly set the type stored under the given key.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/379.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types&lt;K&gt;.Contains Method (K)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types&lt;K&gt;.Contains Method (K)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns true if the cache contains an entry with the specified key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/366.html\">Types&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool Contains (\n        K <i>key</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to check.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if an entry with the key exists.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/38.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ushort FromBig (\n        ushort <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/380.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types&lt;K&gt;.Get Method (K, Func&lt;K, Type&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types&lt;K&gt;.Get Method (K, Func&lt;K, Type&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGet the type saved under the given key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/366.html\">Types&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Type Get (\n        K <i>key</i>,\n        Func&lt;K, Type&gt; <i>find</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key the type is saved under.\r\n</div>\r\n<div class=\"CommentParameterName\">find</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA callback to load the type for the given key.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type saved under <span class=\"Code\">key</span>.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/381.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Types&lt;K&gt;.Set Method (K, Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Types&lt;K&gt;.Set Method (K, Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExplicitly set the type stored under the given key.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/366.html\">Types&lt;K&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Type Set (\n        K <i>key</i>,\n        Type <i>type</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe key to save the type under.\r\n</div>\r\n<div class=\"CommentParameterName\">type</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Type to cache.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type that was cached.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/382.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOperations on the dynamic type of an object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/363.html\">DynamicType</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/383.html\">Create</a></td>\r\n<td>Reflect on the dynamic type of the reference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/384.html\">Reflect</a></td>\r\n<td>Overloaded. Reflect on the dynamic type of the reference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/383.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType.Create Method (Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType.Create Method (Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReflect on the dynamic type of the reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/363.html\">DynamicType</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;object&gt; Create (\n        Type <i>objType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">objType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unknown object type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA function that can be used to construct uninitialized instances of the given type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/384.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType.Reflect Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType.Reflect Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReflect on the dynamic type of the reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/363.html\">DynamicType</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/385.html\">DynamicType.Reflect (object)</a></td>\r\n<td>Reflect on the dynamic type of the reference.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/386.html\">DynamicType.Reflect (Type)</a></td>\r\n<td>Reflect on the dynamic type of the reference.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/385.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType.Reflect Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType.Reflect Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReflect on the dynamic type of the reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/363.html\">DynamicType</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;object, IReflector, FieldInfo, object&gt; Reflect (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object with unknown type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/386.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DynamicType.Reflect Method (Type)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DynamicType.Reflect Method (Type)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReflect on the dynamic type of the reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/363.html\">DynamicType</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Func&lt;object, IReflector, FieldInfo, object&gt; Reflect (\n        Type <i>objType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">objType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unknown object type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA function that can be used to reflect on any instance of the given type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/387.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nStatically-typed, safe reflection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/388.html\">Array&lt;T&gt;</a></td>\r\n<td>Designates a System.Array field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/389.html\">Bool</a></td>\r\n<td>Designates a System.Bool field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/390.html\">Byte</a></td>\r\n<td>Designates a System.Byte field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/391.html\">Char</a></td>\r\n<td>Designates a System.Char field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/392.html\">DateTime</a></td>\r\n<td>Designates a System.DateTime field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/393.html\">DBNull</a></td>\r\n<td>Designates a System.DBNull field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/394.html\">Decimal</a></td>\r\n<td>Designates a System.Decimal field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/395.html\">Delegate&lt;T&gt;</a></td>\r\n<td>Designates a System.Delegate field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/396.html\">Double</a></td>\r\n<td>Designates a System.Double field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/397.html\">Float</a></td>\r\n<td>Designates a System.Single field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/398.html\">Int16</a></td>\r\n<td>Designates a System.Int16 field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/399.html\">Int32</a></td>\r\n<td>Designates a System.Int32 field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/400.html\">Int64</a></td>\r\n<td>Designates a System.Int64 field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/401.html\">Nullable&lt;T&gt;</a></td>\r\n<td>Designates a System.Nullable field of type <span class=\"Code\">T</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/402.html\">Object&lt;T&gt;</a></td>\r\n<td>Designates a field of type <typeparam name=\"T\" />.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/403.html\">SByte</a></td>\r\n<td>Designates a System.SByte field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/404.html\">String</a></td>\r\n<td>Designates a System.String field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/405.html\">Type</a></td>\r\n<td>Designates a System.Type handle.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/406.html\">UInt16</a></td>\r\n<td>Designates a System.UInt16 field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/407.html\">UInt32</a></td>\r\n<td>Designates a System.UInt32 field.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/408.html\">UInt64</a></td>\r\n<td>Designates a System.UInt64 field.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/388.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Array&lt;T&gt; Method (ref T[], FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Array&lt;T&gt; Method (ref T[], FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Array field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Array&lt;T&gt; (\n        ref T[] <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/389.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Bool Method (ref bool, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Bool Method (ref bool, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Bool field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Bool (\n        ref bool <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/39.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int FromBig (\n        int <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/390.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Byte Method (ref byte, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Byte Method (ref byte, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Byte field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Byte (\n        ref byte <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/391.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Char Method (ref char, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Char Method (ref char, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Char field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Char (\n        ref char <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/392.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.DateTime Method (ref DateTime, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.DateTime Method (ref DateTime, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.DateTime field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void DateTime (\n        ref DateTime <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/393.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.DBNull Method (ref DBNull, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.DBNull Method (ref DBNull, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.DBNull field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void DBNull (\n        ref DBNull <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/394.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Decimal Method (ref decimal, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Decimal Method (ref decimal, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Decimal field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Decimal (\n        ref decimal <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/395.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Delegate&lt;T&gt; Method (ref T, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Delegate&lt;T&gt; Method (ref T, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Delegate field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Delegate&lt;T&gt; (\n        ref T <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: Delegate</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/396.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Double Method (ref double, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Double Method (ref double, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Double field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Double (\n        ref double <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/397.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Float Method (ref float, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Float Method (ref float, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Single field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Float (\n        ref float <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/398.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Int16 Method (ref short, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Int16 Method (ref short, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Int16 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int16 (\n        ref short <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/399.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Int32 Method (ref int, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Int32 Method (ref int, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Int32 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int32 (\n        ref int <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/4.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Constructor (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Constructor (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 32-bit union from a signed value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union32 (\n        int <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe signed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/40.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (Union32)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (Union32)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union32 FromBig (\n        Union32 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/400.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Int64 Method (ref long, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Int64 Method (ref long, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Int64 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int64 (\n        ref long <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/401.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Nullable&lt;T&gt; Method (ref T?, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Nullable&lt;T&gt; Method (ref T?, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Nullable field of type <span class=\"Code\">T</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Nullable&lt;T&gt; (\n        ref T? <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/402.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Object&lt;T&gt; Method (ref T, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Object&lt;T&gt; Method (ref T, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a field of type <typeparam name=\"T\" />.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Object&lt;T&gt; (\n        ref T <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/403.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.SByte Method (ref sbyte, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.SByte Method (ref sbyte, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.SByte field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void SByte (\n        ref sbyte <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/404.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.String Method (ref string, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.String Method (ref string, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.String field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void String (\n        ref string <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/405.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.Type Method (ref Type, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.Type Method (ref Type, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.Type handle.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Type (\n        ref Type <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/406.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.UInt16 Method (ref ushort, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.UInt16 Method (ref ushort, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.UInt16 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt16 (\n        ref ushort <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/407.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.UInt32 Method (ref uint, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.UInt32 Method (ref uint, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.UInt32 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt32 (\n        ref uint <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/408.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflector.UInt64 Method (ref ulong, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflector.UInt64 Method (ref ulong, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDesignates a System.UInt64 field.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/368.html\">IReflector</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt64 (\n        ref ulong <i>field</i>,\n        FieldInfo <i>info</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field reference.\r\n</div>\r\n<div class=\"CommentParameterName\">info</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/409.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflected Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflected Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAny objects implementing this interface are assumed to\r\n            provide their own reflection callback.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/367.html\">IReflected</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/410.html\">Reflect</a></td>\r\n<td>Inspect the internals of this object.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/41.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static uint FromBig (\n        uint <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/410.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IReflected.Reflect Method (IReflector, FieldInfo)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IReflected.Reflect Method (IReflector, FieldInfo)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInspect the internals of this object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/367.html\">IReflected</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/362.html\">Sasa.Dynamics</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/5.html\">Sasa.Dynamics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Reflect (\n        IReflector <i>reflector</i>,\n        FieldInfo <i>field</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">reflector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reflector.\r\n</div>\r\n<div class=\"CommentParameterName\">field</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe field information.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/411.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Linq Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Linq Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Abstractions for writing LINQ expression visitors and query providers.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a></td>\r\n<td>A visitor that throws NotSupportedException for every node. Clients\r\n            must simply override the nodes they do support.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a></td>\r\n<td>An expression visitor base class. Each ExpressionType has a corresponding\r\n            abstract method to ensure all node types are handled.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/414.html\">IdentityVisitor</a></td>\r\n<td>A visitor that simply returns the expression as-is. Clients must simply override the\r\n            nodes they wish to transform.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a></td>\r\n<td>A default Queryable implementation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/416.html\">QueryProvider</a></td>\r\n<td>A base query provider which implements much of the common functionality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/412.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA visitor that throws NotSupportedException for every node. Clients\r\n            must simply override the nodes they do support.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class ErrorVisitor&lt;T&gt; :&nbsp;</td>\n<td>\nExpressionVisitor&lt;T&gt;<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/14.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/413.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn expression visitor base class. Each ExpressionType has a corresponding\r\n            abstract method to ensure all node types are handled.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class ExpressionVisitor&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nBase on mattwar's excellent series:\r\n            http://blogs.msdn.com/mattwar/pages/linq-links.aspx\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/417.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/414.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA visitor that simply returns the expression as-is. Clients must simply override the\r\n            nodes they wish to transform.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class IdentityVisitor :&nbsp;</td>\n<td>\nExpressionVisitor&lt;Expression&gt;<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/2/466.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/415.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA default Queryable implementation.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class Queryable&lt;T&gt; :&nbsp;</td>\n<td>\nIQueryable&lt;T&gt;,<br />\nIEnumerable&lt;T&gt;,<br />\nIQueryable,<br />\nIEnumerable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type returned by the query.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nBased on code provided by mattwar:\r\n            http://blogs.msdn.com/mattwar/archive/2007/07/30/linq-building-an-iqueryable-provider-part-i.aspx\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/62.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/416.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA base query provider which implements much of the common functionality.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class QueryProvider :&nbsp;</td>\n<td>\nIQueryProvider\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/68.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/417.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn expression visitor base class. Each ExpressionType has a corresponding\r\n            abstract method to ensure all node types are handled.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/2/418.html\">ExpressionVisitor</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/419.html\">Add</a></td>\r\n<td>A node that represents arithmetic addition without overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/420.html\">AddChecked</a></td>\r\n<td>A node that represents arithmetic addition with overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/421.html\">And</a></td>\r\n<td>A node that represents a bitwise AND operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/422.html\">AndAlso</a></td>\r\n<td>A node that represents a short-circuiting conditional AND operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/423.html\">ArrayIndex</a></td>\r\n<td>A node that represents indexing into a one-dimensional array.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/424.html\">ArrayLength</a></td>\r\n<td>A node that represents getting the length of a one-dimensional array.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/425.html\">Call</a></td>\r\n<td>A node that represents a method call.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/426.html\">Coalesce</a></td>\r\n<td>A node that represents a null coalescing operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/427.html\">Conditional</a></td>\r\n<td>A node that represents a conditional operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/428.html\">Constant</a></td>\r\n<td>A node that represents an expression that has a constant value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/429.html\">Convert</a></td>\r\n<td>A node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, it overflows silently if the converted value does not\r\n            fit the target type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/430.html\">ConvertChecked</a></td>\r\n<td>A node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, an exception is thrown if the converted value does\r\n            not fit the target type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/431.html\">Divide</a></td>\r\n<td>A node that represents arithmetic division.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/432.html\">Equal</a></td>\r\n<td>A node that represents an equality comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/433.html\">ExclusiveOr</a></td>\r\n<td>A node that represents a bitwise XOR operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/434.html\">GreaterThan</a></td>\r\n<td>A node that represents a \"greater than\" numeric comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/435.html\">GreaterThanOrEqual</a></td>\r\n<td>A node that represents a \"greater than or equal\" numeric comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/436.html\">Invoke</a></td>\r\n<td>A node that represents applying a delegate or lambda expression to a list\r\n            of argument expressions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/437.html\">Lambda</a></td>\r\n<td>A node that represents a lambda expression.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/438.html\">LeftShift</a></td>\r\n<td>A node that represents a bitwise left-shift operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/439.html\">LessThan</a></td>\r\n<td>A node that represents a \"less than\" numeric comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/440.html\">LessThanOrEqual</a></td>\r\n<td>A node that represents a \"less than or equal\" numeric comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/441.html\">ListInit</a></td>\r\n<td>A node that represents creating a new System.Collections.IEnumerable object\r\n            and initializing it from a list of elements.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/442.html\">MemberAccess</a></td>\r\n<td>A node that represents reading from a field or property.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/443.html\">MemberInit</a></td>\r\n<td>A node that represents creating a new object and initializing one or more\r\n            of its members.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/444.html\">Modulo</a></td>\r\n<td>A node that represents an arithmetic remainder operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/445.html\">Multiply</a></td>\r\n<td>A node that represents arithmetic multiplication without overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/446.html\">MultiplyChecked</a></td>\r\n<td>A node that represents arithmetic multiplication with overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/447.html\">Negate</a></td>\r\n<td>A node that represents an arithmetic negation operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/448.html\">NegateChecked</a></td>\r\n<td>A node that represents an arithmetic negation operation that has overflow\r\n            checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/449.html\">New</a></td>\r\n<td>A node that represents calling a constructor to create a new object.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/450.html\">NewArrayBounds</a></td>\r\n<td>A node that represents creating a new array where the bounds for each dimension\r\n            are specified.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/451.html\">NewArrayInit</a></td>\r\n<td>A node that represents creating a new one-dimensional array and initializing\r\n            it from a list of elements.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/452.html\">Not</a></td>\r\n<td>A node that represents a bitwise complement operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/453.html\">NotEqual</a></td>\r\n<td>A node that represents an inequality comparison.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/454.html\">Or</a></td>\r\n<td>A node that represents a bitwise OR operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/455.html\">OrElse</a></td>\r\n<td>A node that represents a short-circuiting conditional OR operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/456.html\">Parameter</a></td>\r\n<td>A node that represents a reference to a parameter defined in the context\r\n            of the expression.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/457.html\">Power</a></td>\r\n<td>A node that represents raising a number to a power.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/458.html\">Quote</a></td>\r\n<td>A node that represents an expression that has a constant value of type System.Linq.Expressions.Expression.\r\n            A System.Linq.Expressions.ExpressionType.Quote node can contain references\r\n            to parameters defined in the context of the expression it represents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/459.html\">RightShift</a></td>\r\n<td>A node that represents a bitwise right-shift operation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/460.html\">Subtract</a></td>\r\n<td>A node that represents arithmetic subtraction without overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/461.html\">SubtractChecked</a></td>\r\n<td>A node that represents arithmetic subtraction with overflow checking.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/462.html\">TypeAs</a></td>\r\n<td>A node that represents an explicit reference or boxing conversion where null\r\n            is supplied if the conversion fails.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/463.html\">TypeIs</a></td>\r\n<td>A node that represents a type test.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/2/464.html\">UnaryPlus</a></td>\r\n<td>A node that represents a unary plus operation. The result of a predefined\r\n            unary plus operation is simply the value of the operand, but user-defined\r\n            implementations may have non-trivial results.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/465.html\">Visit</a></td>\r\n<td>Processes the given expression by dispatching to the appropriate expression handler.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/418.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected ExpressionVisitor ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/419.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Add Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Add Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic addition without overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Add (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/42.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (Union64)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (Union64)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union64 FromBig (\n        Union64 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/420.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.AddChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.AddChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic addition with overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T AddChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/421.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.And Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.And Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise AND operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T And (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/422.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.AndAlso Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.AndAlso Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a short-circuiting conditional AND operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T AndAlso (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/423.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.ArrayIndex Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.ArrayIndex Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents indexing into a one-dimensional array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T ArrayIndex (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/424.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.ArrayLength Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.ArrayLength Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents getting the length of a one-dimensional array.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T ArrayLength (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/425.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Call Method (MethodCallExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Call Method (MethodCallExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a method call.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Call (\n        MethodCallExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/426.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Coalesce Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Coalesce Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a null coalescing operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Coalesce (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/427.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Conditional Method (ConditionalExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Conditional Method (ConditionalExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a conditional operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Conditional (\n        ConditionalExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/428.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Constant Method (ConstantExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Constant Method (ConstantExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an expression that has a constant value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Constant (\n        ConstantExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/429.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Convert Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Convert Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, it overflows silently if the converted value does not\r\n            fit the target type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Convert (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/43.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static long FromBig (\n        long <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/430.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.ConvertChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.ConvertChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a cast or conversion operation. If the operation is\r\n            a numeric conversion, an exception is thrown if the converted value does\r\n            not fit the target type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T ConvertChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/431.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Divide Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Divide Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic division.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Divide (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/432.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Equal Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Equal Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an equality comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Equal (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/433.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.ExclusiveOr Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.ExclusiveOr Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise XOR operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T ExclusiveOr (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/434.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.GreaterThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.GreaterThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a \"greater than\" numeric comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T GreaterThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/435.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.GreaterThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.GreaterThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a \"greater than or equal\" numeric comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T GreaterThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/436.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Invoke Method (InvocationExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Invoke Method (InvocationExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents applying a delegate or lambda expression to a list\r\n            of argument expressions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Invoke (\n        InvocationExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/437.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Lambda Method (LambdaExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Lambda Method (LambdaExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a lambda expression.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Lambda (\n        LambdaExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/438.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.LeftShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.LeftShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise left-shift operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T LeftShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/439.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.LessThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.LessThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a \"less than\" numeric comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T LessThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/44.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ulong FromBig (\n        ulong <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/440.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.LessThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.LessThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a \"less than or equal\" numeric comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T LessThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/441.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.ListInit Method (ListInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.ListInit Method (ListInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents creating a new System.Collections.IEnumerable object\r\n            and initializing it from a list of elements.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T ListInit (\n        ListInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/442.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.MemberAccess Method (MemberExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.MemberAccess Method (MemberExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents reading from a field or property.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T MemberAccess (\n        MemberExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/443.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.MemberInit Method (MemberInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.MemberInit Method (MemberInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents creating a new object and initializing one or more\r\n            of its members.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T MemberInit (\n        MemberInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/444.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Modulo Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Modulo Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an arithmetic remainder operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Modulo (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/445.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Multiply Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Multiply Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic multiplication without overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Multiply (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/446.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.MultiplyChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.MultiplyChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic multiplication with overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T MultiplyChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/447.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Negate Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Negate Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an arithmetic negation operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Negate (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/448.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.NegateChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.NegateChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an arithmetic negation operation that has overflow\r\n            checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T NegateChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/449.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.New Method (NewExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.New Method (NewExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents calling a constructor to create a new object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T New (\n        NewExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/45.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.FromBig Method (decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.FromBig Method (decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the value from big endian to host endian encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static decimal FromBig (\n        decimal <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe big endian encoded value to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHost endian encoded value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/450.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.NewArrayBounds Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.NewArrayBounds Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents creating a new array where the bounds for each dimension\r\n            are specified.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T NewArrayBounds (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/451.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.NewArrayInit Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.NewArrayInit Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents creating a new one-dimensional array and initializing\r\n            it from a list of elements.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T NewArrayInit (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/452.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Not Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Not Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise complement operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Not (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/453.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.NotEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.NotEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an inequality comparison.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T NotEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/454.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Or Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Or Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise OR operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Or (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/455.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.OrElse Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.OrElse Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a short-circuiting conditional OR operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T OrElse (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/456.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Parameter Method (ParameterExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Parameter Method (ParameterExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a reference to a parameter defined in the context\r\n            of the expression.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Parameter (\n        ParameterExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/457.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Power Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Power Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents raising a number to a power.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Power (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/458.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Quote Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Quote Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an expression that has a constant value of type System.Linq.Expressions.Expression.\r\n            A System.Linq.Expressions.ExpressionType.Quote node can contain references\r\n            to parameters defined in the context of the expression it represents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Quote (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/459.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.RightShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.RightShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a bitwise right-shift operation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T RightShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/46.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (Union128)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (Union128)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union128 Swap (\n        Union128 <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/460.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Subtract Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Subtract Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic subtraction without overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Subtract (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/461.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.SubtractChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.SubtractChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents arithmetic subtraction with overflow checking.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T SubtractChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/462.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.TypeAs Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.TypeAs Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents an explicit reference or boxing conversion where null\r\n            is supplied if the conversion fails.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T TypeAs (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/463.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.TypeIs Method (TypeBinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.TypeIs Method (TypeBinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a type test.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T TypeIs (\n        TypeBinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/464.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.UnaryPlus Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.UnaryPlus Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA node that represents a unary plus operation. The result of a predefined\r\n            unary plus operation is simply the value of the operand, but user-defined\r\n            implementations may have non-trivial results.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T UnaryPlus (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/465.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ExpressionVisitor&lt;T&gt;.Visit Method (Expression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ExpressionVisitor&lt;T&gt;.Visit Method (Expression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nProcesses the given expression by dispatching to the appropriate expression handler.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/413.html\">ExpressionVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Visit (\n        Expression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value computed from the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/466.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA visitor that simply returns the expression as-is. Clients must simply override the\r\n            nodes they wish to transform.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/467.html\">IdentityVisitor</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/468.html\">Add</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/469.html\">AddChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/470.html\">And</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/471.html\">AndAlso</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/472.html\">ArrayIndex</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/473.html\">ArrayLength</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/474.html\">Call</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/475.html\">Coalesce</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/476.html\">Conditional</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/477.html\">Constant</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/478.html\">Convert</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/479.html\">ConvertChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/480.html\">Divide</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/481.html\">Equal</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/482.html\">ExclusiveOr</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/483.html\">GreaterThan</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/484.html\">GreaterThanOrEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/485.html\">Invoke</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/486.html\">Lambda</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/487.html\">LeftShift</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/488.html\">LessThan</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/489.html\">LessThanOrEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/490.html\">ListInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/491.html\">MemberAccess</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/492.html\">MemberInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/493.html\">Modulo</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/494.html\">Multiply</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/495.html\">MultiplyChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/496.html\">Negate</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/497.html\">NegateChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/498.html\">New</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/499.html\">NewArrayBounds</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/500.html\">NewArrayInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/1.html\">Not</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/2.html\">NotEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/3.html\">Or</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/4.html\">OrElse</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/5.html\">Parameter</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/6.html\">Power</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/7.html\">Quote</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/8.html\">RightShift</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/9.html\">Subtract</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/10.html\">SubtractChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/11.html\">TypeAs</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/12.html\">TypeIs</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/13.html\">UnaryPlus</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/467.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IdentityVisitor ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/468.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Add Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Add Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Add (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/469.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.AddChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.AddChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression AddChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/47.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static decimal Swap (\n        decimal <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/470.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.And Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.And Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression And (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/471.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.AndAlso Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.AndAlso Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression AndAlso (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/472.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.ArrayIndex Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.ArrayIndex Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression ArrayIndex (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/473.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.ArrayLength Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.ArrayLength Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression ArrayLength (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/474.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Call Method (MethodCallExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Call Method (MethodCallExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Call (\n        MethodCallExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/475.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Coalesce Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Coalesce Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Coalesce (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/476.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Conditional Method (ConditionalExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Conditional Method (ConditionalExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Conditional (\n        ConditionalExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/477.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Constant Method (ConstantExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Constant Method (ConstantExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Constant (\n        ConstantExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/478.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Convert Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Convert Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Convert (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/479.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.ConvertChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.ConvertChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression ConvertChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/48.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (Union16)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (Union16)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union16 Swap (\n        Union16 <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/480.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Divide Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Divide Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Divide (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/481.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Equal Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Equal Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Equal (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/482.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.ExclusiveOr Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.ExclusiveOr Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression ExclusiveOr (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/483.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.GreaterThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.GreaterThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression GreaterThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/484.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.GreaterThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.GreaterThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression GreaterThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/485.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Invoke Method (InvocationExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Invoke Method (InvocationExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Invoke (\n        InvocationExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/486.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Lambda Method (LambdaExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Lambda Method (LambdaExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Lambda (\n        LambdaExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/487.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.LeftShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.LeftShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression LeftShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/488.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.LessThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.LessThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression LessThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/489.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.LessThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.LessThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression LessThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/49.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static short Swap (\n        short <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/490.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.ListInit Method (ListInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.ListInit Method (ListInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression ListInit (\n        ListInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/491.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.MemberAccess Method (MemberExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.MemberAccess Method (MemberExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression MemberAccess (\n        MemberExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/492.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.MemberInit Method (MemberInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.MemberInit Method (MemberInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression MemberInit (\n        MemberInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/493.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Modulo Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Modulo Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Modulo (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/494.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Multiply Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Multiply Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Multiply (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/495.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.MultiplyChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.MultiplyChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression MultiplyChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/496.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Negate Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Negate Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Negate (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/497.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.NegateChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.NegateChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression NegateChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/498.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.New Method (NewExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.New Method (NewExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression New (\n        NewExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/499.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.NewArrayBounds Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.NewArrayBounds Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression NewArrayBounds (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/5.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Constructor (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Constructor (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 32-bit union from an unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union32 (\n        uint <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe unsigned value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/50.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ushort Swap (\n        ushort <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/500.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.NewArrayInit Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.NewArrayInit Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression NewArrayInit (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/51.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static uint Swap (\n        uint <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/52.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int Swap (\n        int <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/53.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (Union32)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (Union32)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union32 Swap (\n        Union32 <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/54.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ulong Swap (\n        ulong <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/55.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static long Swap (\n        long <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/56.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Endian.Swap Method (Union64)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Endian.Swap Method (Union64)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSwap upper and lower bytes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/223.html\">Endian</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static Union64 Swap (\n        Union64 <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being swapped.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe swapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/57.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Ref&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Ref&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSimple reference.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/236.html\">Ref&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/58.html\">Ref</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/59.html\">Value</a></td>\r\n<td>The encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/58.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Ref&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Ref&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/236.html\">Ref&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Ref ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/59.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Ref&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Ref&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/236.html\">Ref&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/6.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union32 Constructor (float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union32 Constructor (float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a flat 32-bit union from an unsigned value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/245.html\">Union32</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Union32 (\n        float <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe single-precision floating point value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/60.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ImmutableValue&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ImmutableValue&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn immutable value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/225.html\">ImmutableValue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/61.html\">ImmutableValue</a></td>\r\n<td>Constructs an instance of a value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/62.html\">Value</a></td>\r\n<td>The encapsulated value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/61.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ImmutableValue&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ImmutableValue&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstructs an instance of a value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/225.html\">ImmutableValue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public ImmutableValue (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/62.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ImmutableValue&lt;T&gt;.Value Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ImmutableValue&lt;T&gt;.Value Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe encapsulated value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/225.html\">ImmutableValue&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Value { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/63.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtensions for core int values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/64.html\">Bound</a></td>\r\n<td>Bound the given int by the upper and lower values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/65.html\">DownTo</a></td>\r\n<td>Overloaded. Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/66.html\">UpTo</a></td>\r\n<td>Overloaded. Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/64.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.Bound Method (int, int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.Bound Method (int, int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBound the given int by the upper and lower values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int Bound (\n        int <i>value</i>,\n        int <i>min</i>,\n        int <i>max</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe int to bound.\r\n</div>\r\n<div class=\"CommentParameterName\">min</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower inclusive bound.\r\n</div>\r\n<div class=\"CommentParameterName\">max</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper inclusive bound.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns i if min &lt;= i &lt;= max, or min or max if i is out of that range.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/65.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.DownTo Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.DownTo Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/70.html\">Integers.DownTo (int, int)</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/71.html\">Integers.DownTo (uint, uint)</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/66.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.UpTo Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.UpTo Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/67.html\">Integers.UpTo (int, int)</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/68.html\">Integers.UpTo (int, int, int)</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/69.html\">Integers.UpTo (uint, uint)</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/67.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.UpTo Method (int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.UpTo Method (int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;int&gt; UpTo (\n        int <i>start</i>,\n        int <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of int from [start, end).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/68.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.UpTo Method (int, int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.UpTo Method (int, int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;int&gt; UpTo (\n        int <i>start</i>,\n        int <i>end</i>,\n        int <i>step</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">step</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe incremental value.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of int from [start, end) incremented by 'step'.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/69.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.UpTo Method (uint, uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.UpTo Method (uint, uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;uint&gt; UpTo (\n        uint <i>start</i>,\n        uint <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of uint from [start, end).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/7.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a 64-bit union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/8.html\">Double</a></td>\r\n<td>The double-precision floating point fragment of the union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/9.html\">Signed</a></td>\r\n<td>The signed fragment of the union.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" /></td>\r\n<td><a href=\"../../Contents/2/10.html\">Unsigned</a></td>\r\n<td>The unsigned fragment of the union.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/11.html\">Union64</a></td>\r\n<td>Overloaded. Construct a flat 64-bit union from a signed value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/70.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.DownTo Method (int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.DownTo Method (int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;int&gt; DownTo (\n        int <i>start</i>,\n        int <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of int from [start, end).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/71.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Integers.DownTo Method (uint, uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Integers.DownTo Method (uint, uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/226.html\">Integers</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;uint&gt; DownTo (\n        uint <i>start</i>,\n        uint <i>end</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of int from [start, end).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/72.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Decimals Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Decimals Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods on System.Decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/217.html\">Decimals</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/73.html\">Bound</a></td>\r\n<td>Bound the given Decimal by the upper and lower values.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/74.html\">UpTo</a></td>\r\n<td>Returns a stream of numbers from start up to end.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/73.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Decimals.Bound Method (decimal, decimal, decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Decimals.Bound Method (decimal, decimal, decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBound the given Decimal by the upper and lower values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/217.html\">Decimals</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static decimal Bound (\n        decimal <i>value</i>,\n        decimal <i>min</i>,\n        decimal <i>max</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to bound.\r\n</div>\r\n<div class=\"CommentParameterName\">min</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower inclusive bound.\r\n</div>\r\n<div class=\"CommentParameterName\">max</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper inclusive bound.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns <span class=\"Code\">value</span> if <span class=\"Code\">min</span> &lt;= <span class=\"Code\">value</span> &lt;= <span class=\"Code\">max</span>,\r\n            or <span class=\"Code\">min</span> or <span class=\"Code\">max</span> if <span class=\"Code\">value</span> is out of that range.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/74.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Decimals.UpTo Method (decimal, decimal, decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Decimals.UpTo Method (decimal, decimal, decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a stream of numbers from start up to end.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/217.html\">Decimals</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;decimal&gt; UpTo (\n        decimal <i>start</i>,\n        decimal <i>end</i>,\n        decimal <i>step</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe lower incusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">end</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe upper exclusive bound of the stream.\r\n</div>\r\n<div class=\"CommentParameterName\">step</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe increment used from <span class=\"Code\">start</span> to <span class=\"Code\">end</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA stream of decimal from [<span class=\"Code\">start</span>, <span class=\"Code\">end</span>).\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/75.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA 4-element tuple type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/76.html\">Quad</a></td>\r\n<td>Construct a new Quad.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/77.html\">Bind</a></td>\r\n<td>Bind all tuple elements to locals.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/78.html\">CompareTo</a></td>\r\n<td>Compare the two values, testing sequentially, Quad.First, Quad.Second\r\n            Quad.Third, and Quad.Fourth for any values that can specify an \r\n            ordering.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/79.html\">Equals</a></td>\r\n<td>Overloaded. Test equality of Quads element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/80.html\">GetHashCode</a></td>\r\n<td>Generate a hash code.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/81.html\">operator !=</a></td>\r\n<td>Compares two Quads for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/82.html\">operator &lt;</a></td>\r\n<td>Orders two pairs.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/83.html\">operator ==</a></td>\r\n<td>Compares two Quads for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/84.html\">operator &gt;</a></td>\r\n<td>Orders two tuples.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/85.html\">ToString</a></td>\r\n<td>Return a string representation of this Quad.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/86.html\">First</a></td>\r\n<td>First element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/87.html\">Fourth</a></td>\r\n<td>Fourth element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/88.html\">Second</a></td>\r\n<td>Second element of the tuple.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/89.html\">Third</a></td>\r\n<td>Third element of the tuple.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/76.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt; Constructor (T0, T1, T2, T3)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt; Constructor (T0, T1, T2, T3)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new Quad.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Quad (\n        T0 <i>first</i>,\n        T1 <i>second</i>,\n        T2 <i>third</i>,\n        T3 <i>fourth</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/77.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Bind Method (out T0, out T1, out T2, out T3)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Bind Method (out T0, out T1, out T2, out T3)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nBind all tuple elements to locals.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bind (\n        out T0 <i>first</i>,\n        out T1 <i>second</i>,\n        out T2 <i>third</i>,\n        out T3 <i>fourth</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first value.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second value.\r\n</div>\r\n<div class=\"CommentParameterName\">third</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe third value.\r\n</div>\r\n<div class=\"CommentParameterName\">fourth</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe fourth value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/78.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.CompareTo Method (Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.CompareTo Method (Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare the two values, testing sequentially, Quad.First, Quad.Second\r\n            Quad.Third, and Quad.Fourth for any values that can specify an \r\n            ordering.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int CompareTo (\n        Quad&lt;T0, T1, T2, T3&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Quad to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe ordering compares sequentially Quad.First, Quad.Second,\r\n            Quad.Third and Quad.Fourth until it finds an entry that ensures an\r\n            total order.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/79.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest equality of Quads element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/90.html\">Quad&lt;T0, T1, T2, T3&gt;.Equals (Quad&lt;T0, T1, T2, T3&gt;)</a></td>\r\n<td>Test equality of Quads element-wise.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/91.html\">Quad&lt;T0, T1, T2, T3&gt;.Equals (object)</a></td>\r\n<td>Test equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/8.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64.Double Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64.Double Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe double-precision floating point fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public double Double</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/80.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate a hash code.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe hash of the encapsulated values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/81.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.operator != Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.operator != Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Quads for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Quad&lt;T0, T1, T2, T3&gt; <i>left</i>,\n        Quad&lt;T0, T1, T2, T3&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Quad.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Quad.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Quads are not equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/82.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.operator &lt; Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.operator &lt; Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two pairs.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &lt; (\n        Quad&lt;T0, T1, T2, T3&gt; <i>left</i>,\n        Quad&lt;T0, T1, T2, T3&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first tuple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the tuples are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/83.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.operator == Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.operator == Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Quads for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Quad&lt;T0, T1, T2, T3&gt; <i>left</i>,\n        Quad&lt;T0, T1, T2, T3&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Quad.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Quad.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Quads are equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/84.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.operator &gt; Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.operator &gt; Method (Quad&lt;T0, T1, T2, T3&gt;, Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOrders two tuples.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator &gt; (\n        Quad&lt;T0, T1, T2, T3&gt; <i>left</i>,\n        Quad&lt;T0, T1, T2, T3&gt; <i>right</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first tuple.\r\n</div>\r\n<div class=\"CommentParameterName\">right</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second tuple.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns zero if the tuples are equal, a number greater than zero if <span class=\"Code\">left</span> is\r\n            greater than <span class=\"Code\">right</span>, else a number less than zero.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/85.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of this Quad.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of this Quad.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/86.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.First Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.First Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFirst element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T0 First { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/87.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Fourth Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Fourth Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFourth element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T3 Fourth { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/88.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Second Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Second Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSecond element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T1 Second { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/89.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Third Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Third Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThird element of the tuple.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T2 Third { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/9.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Union64.Signed Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Union64.Signed Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe signed fragment of the union.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/246.html\">Union64</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public long Signed</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/90.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Equals Method (Quad&lt;T0, T1, T2, T3&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Equals Method (Quad&lt;T0, T1, T2, T3&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest equality of Quads element-wise.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Quad&lt;T0, T1, T2, T3&gt; <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe other Quad to compare for equality.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the Quad instances match, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/91.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Quad&lt;T0, T1, T2, T3&gt;.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Quad&lt;T0, T1, T2, T3&gt;.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTest equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/235.html\">Quad&lt;T0, T1, T2, T3&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nObject to compare for equality.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if the objects match, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/92.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a possibly null value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/93.html\">Option</a></td>\r\n<td>Construct an optional value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/94.html\">Equals</a></td>\r\n<td>Overloaded. Compares Option&lt;T&gt; and a T for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/95.html\">GetHashCode</a></td>\r\n<td>Serves as a hash function for this type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/96.html\">operator !=</a></td>\r\n<td>Overloaded. Compares two objects for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/97.html\">operator ==</a></td>\r\n<td>Overloaded. Compares two objects for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/98.html\">operator implicit</a></td>\r\n<td>An implicit conversion from any value to an optional value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/99.html\">ToString</a></td>\r\n<td>Return a string representation.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/100.html\">TryGetValue</a></td>\r\n<td>Attempts to extract the value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/101.html\">HasValue</a></td>\r\n<td>Returns true if there is a value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/102.html\">None</a></td>\r\n<td>An empty option value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/2/103.html\">Value</a></td>\r\n<td>The wrapped value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/93.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt; Constructor (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt; Constructor (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct an optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Option (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe wrapped value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/94.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares Option&lt;T&gt; and a T for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/104.html\">Option&lt;T&gt;.Equals (T)</a></td>\r\n<td>Compares Option&lt;T&gt; and a T for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/2/105.html\">Option&lt;T&gt;.Equals (Option&lt;T&gt;)</a></td>\r\n<td>Compares two Option&lt;T&gt; instances for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/2/106.html\">Option&lt;T&gt;.Equals (object)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/95.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nServes as a hash function for this type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA hash code.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/96.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator != Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator != Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/110.html\">Option&lt;T&gt;.operator != (Option&lt;T&gt;, Option&lt;T&gt;)</a></td>\r\n<td>Compares two objects for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/111.html\">Option&lt;T&gt;.operator != (Option&lt;T&gt;, T)</a></td>\r\n<td>Compares two objects for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/112.html\">Option&lt;T&gt;.operator != (T, Option&lt;T&gt;)</a></td>\r\n<td>Compares two objects for inequality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/97.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator == Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator == Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/107.html\">Option&lt;T&gt;.operator == (Option&lt;T&gt;, Option&lt;T&gt;)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/108.html\">Option&lt;T&gt;.operator == (Option&lt;T&gt;, T)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/2/109.html\">Option&lt;T&gt;.operator == (T, Option&lt;T&gt;)</a></td>\r\n<td>Compares two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/98.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.operator implicit Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.operator implicit Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn implicit conversion from any value to an optional value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static implicit operator Option&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to be converted.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns a wrapped optional reference.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/2/99.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Option&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Option&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/1/233.html\">Option&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/1/208.html\">Sasa</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/1.html\">Sasa</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the optional value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/1.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Not Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Not Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Not (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/10.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.SubtractChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.SubtractChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression SubtractChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/100.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Gif Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Gif Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for GIF images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Gif = \".gif\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/101.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Jpeg Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Jpeg Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for JPEG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Jpeg = \".jpeg\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/102.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.JpegShort Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.JpegShort Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for JPEG images (short version).\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string JpegShort = \".jpg\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/103.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Png Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Png Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for PNG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Png = \".png\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/104.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Tiff Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Tiff Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for TIFF images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Tiff = \".tiff\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/105.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/106.html\">Csv</a></td>\r\n<td>File extension for CSV files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/107.html\">Html</a></td>\r\n<td>File extension for HTML files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/108.html\">Plain</a></td>\r\n<td>File extension for plain text files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/109.html\">RichText</a></td>\r\n<td>File extension for rich text files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/110.html\">Xml</a></td>\r\n<td>File extension for XML files.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/106.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text.Csv Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text.Csv Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for CSV files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Csv = \".csv\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/107.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text.Html Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text.Html Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for HTML files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Html = \".html\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/108.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text.Plain Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text.Plain Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for plain text files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Plain = \".txt\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/109.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text.RichText Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text.RichText Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for rich text files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string RichText = \".rtf\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/11.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.TypeAs Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.TypeAs Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression TypeAs (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/110.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text.Xml Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text.Xml Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for XML files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/79.html\">FileExtensions.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Xml = \".xml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/111.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Multipart Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Multipart Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMultipart media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/78.html\">FileExtensions.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/112.html\">Alternative</a></td>\r\n<td>multipart/alternative media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/113.html\">Digest</a></td>\r\n<td>multipart/digest media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/114.html\">Mixed</a></td>\r\n<td>multipart/mixed media type.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/112.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Multipart.Alternative Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Multipart.Alternative Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/alternative media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/78.html\">FileExtensions.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Alternative = \".eml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/113.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Multipart.Digest Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Multipart.Digest Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/digest media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/78.html\">FileExtensions.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Digest = \".eml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/114.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Multipart.Mixed Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Multipart.Mixed Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/mixed media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/78.html\">FileExtensions.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Mixed = \".eml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/115.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Message Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Message Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMessage media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/77.html\">FileExtensions.Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/116.html\">Rfc822</a></td>\r\n<td>message/rfc822 media type.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/116.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Message.Rfc822 Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Message.Rfc822 Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmessage/rfc822 media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/77.html\">FileExtensions.Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Rfc822 = \".eml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/117.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdditional media types not ommitted for System.Net.Mime.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/81.html\">Application</a></td>\r\n<td>Application-specific media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/82.html\">Image</a></td>\r\n<td>Media types for images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/83.html\">Message</a></td>\r\n<td>Message media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/84.html\">Multipart</a></td>\r\n<td>Multipart media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/85.html\">Text</a></td>\r\n<td>Media types for text.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/118.html\">FileExtension</a></td>\r\n<td>Convert the given media type into the corresponding file extension.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/119.html\">GetFileExtensions</a></td>\r\n<td>Return the sequence of all known file extensions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/120.html\">GetMediaTypes</a></td>\r\n<td>Return the sequence of all known media types.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/118.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.FileExtension Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.FileExtension Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConvert the given media type into the corresponding file extension.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string FileExtension (\n        string <i>mediaType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">mediaType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe internet media type.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe file extension used for that media type.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/119.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.GetFileExtensions Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.GetFileExtensions Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the sequence of all known file extensions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;string&gt; GetFileExtensions ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/12.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.TypeIs Method (TypeBinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.TypeIs Method (TypeBinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression TypeIs (\n        TypeBinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/120.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.GetMediaTypes Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.GetMediaTypes Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the sequence of all known media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;string&gt; GetMediaTypes ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/121.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApplication-specific media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/122.html\">MicrosoftExcel</a></td>\r\n<td>Media type for Microsoft Excel documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/123.html\">MicrosoftPowerpoint</a></td>\r\n<td>Media type for Microsoft Powerpoint documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/124.html\">MicrosoftWord</a></td>\r\n<td>Media type for Microsoft Word documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/125.html\">Octet</a></td>\r\n<td>Media type for a binary file.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/126.html\">Pdf</a></td>\r\n<td>Media type for PDF files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/127.html\">Postscript</a></td>\r\n<td>Media type for Postscript documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/128.html\">Rtf</a></td>\r\n<td>Media type for RTF Df files.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/129.html\">Soap</a></td>\r\n<td>Media type for SOAP messages.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/130.html\">Zip</a></td>\r\n<td>Media type for ZIP files.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/122.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.MicrosoftExcel Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.MicrosoftExcel Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for Microsoft Excel documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftExcel = \"application/vnd.ms-excel\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/123.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.MicrosoftPowerpoint Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.MicrosoftPowerpoint Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for Microsoft Powerpoint documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftPowerpoint = \"application/vnd.ms-powerpoint\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/124.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.MicrosoftWord Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.MicrosoftWord Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for Microsoft Word documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftWord = \"application/msword\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/125.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Octet Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Octet Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for a binary file.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Octet = \"application/octet-stream\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/126.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Pdf Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Pdf Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for PDF files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Pdf = \"application/pdf\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/127.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Postscript Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Postscript Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for Postscript documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Postscript = \"application/postscript\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/128.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Rtf Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Rtf Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for RTF Df files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Rtf = \"application/rtf\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/129.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Soap Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Soap Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for SOAP messages.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Soap = \"application/soap+xml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/13.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.UnaryPlus Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.UnaryPlus Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression UnaryPlus (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/130.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application.Zip Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application.Zip Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for ZIP files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/81.html\">MediaTypes.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Zip = \"application/zip\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/131.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/132.html\">Bmp</a></td>\r\n<td>Media type for BMP images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/133.html\">Dwg</a></td>\r\n<td>Media type for DWG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/134.html\">Gif</a></td>\r\n<td>Media type for GIF images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/135.html\">Jpeg</a></td>\r\n<td>Media type for JPEG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/136.html\">Png</a></td>\r\n<td>Media type for PNG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/137.html\">Tiff</a></td>\r\n<td>Media type for TIFF images.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/132.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Bmp Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Bmp Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for BMP images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Bmp = \"image/x-ms-bmp\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/133.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Dwg Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Dwg Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for DWG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Dwg = \"image/x-dwg\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/134.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Gif Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Gif Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for GIF images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Gif = \"image/gif\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/135.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Jpeg Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Jpeg Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for JPEG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Jpeg = \"image/jpeg\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/136.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Png Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Png Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for PNG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Png = \"image/x-ms-png\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/137.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image.Tiff Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image.Tiff Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for TIFF images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/82.html\">MediaTypes.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Tiff = \"image/tiff\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/138.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/139.html\">Csv</a></td>\r\n<td>Media type for CSV.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/140.html\">Html</a></td>\r\n<td>Media type for HTML.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/141.html\">Plain</a></td>\r\n<td>Media type for plain text.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/142.html\">RichText</a></td>\r\n<td>Media type for rich text.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/143.html\">Xml</a></td>\r\n<td>Media type for XML.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/139.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text.Csv Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text.Csv Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for CSV.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Csv = \"text/csv\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/14.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA visitor that throws NotSupportedException for every node. Clients\r\n            must simply override the nodes they do support.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/15.html\">ErrorVisitor</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/16.html\">Add</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/17.html\">AddChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/18.html\">And</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/19.html\">AndAlso</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/20.html\">ArrayIndex</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/21.html\">ArrayLength</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/22.html\">Call</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/23.html\">Coalesce</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/24.html\">Conditional</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/25.html\">Constant</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/26.html\">Convert</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/27.html\">ConvertChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/28.html\">Divide</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/29.html\">Equal</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/30.html\">ExclusiveOr</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/31.html\">GreaterThan</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/32.html\">GreaterThanOrEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/33.html\">Invoke</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/34.html\">Lambda</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/35.html\">LeftShift</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/36.html\">LessThan</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/37.html\">LessThanOrEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/38.html\">ListInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/39.html\">MemberAccess</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/40.html\">MemberInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/41.html\">Modulo</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/42.html\">Multiply</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/43.html\">MultiplyChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/44.html\">Negate</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/45.html\">NegateChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/46.html\">New</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/47.html\">NewArrayBounds</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/48.html\">NewArrayInit</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/49.html\">Not</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/50.html\">NotEqual</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/51.html\">Or</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/52.html\">OrElse</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/53.html\">Parameter</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/54.html\">Power</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/55.html\">Quote</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/56.html\">RightShift</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/57.html\">Subtract</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/58.html\">SubtractChecked</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/59.html\">TypeAs</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/60.html\">TypeIs</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/61.html\">UnaryPlus</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/140.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text.Html Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text.Html Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for HTML.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Html = \"text/html\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/141.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text.Plain Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text.Plain Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for plain text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Plain = \"text/plain\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/142.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text.RichText Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text.RichText Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for rich text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string RichText = \"text/richtext\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/143.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text.Xml Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text.Xml Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia type for XML.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/85.html\">MediaTypes.Text</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Xml = \"text/xml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/144.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Multipart Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Multipart Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMultipart media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/84.html\">MediaTypes.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/145.html\">Alternative</a></td>\r\n<td>multipart/alternative media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/146.html\">Digest</a></td>\r\n<td>multipart/digest media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/147.html\">Mixed</a></td>\r\n<td>multipart/mixed media type.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/145.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Multipart.Alternative Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Multipart.Alternative Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/alternative media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/84.html\">MediaTypes.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Alternative = \"multipart/alternative\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/146.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Multipart.Digest Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Multipart.Digest Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/digest media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/84.html\">MediaTypes.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Digest = \"multipart/digest\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/147.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Multipart.Mixed Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Multipart.Mixed Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmultipart/mixed media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/84.html\">MediaTypes.Multipart</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Mixed = \"multipart/mixed\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/148.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Message Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Message Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMessage media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/83.html\">MediaTypes.Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/149.html\">Rfc822</a></td>\r\n<td>message/rfc822 media type.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/149.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Message.Rfc822 Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Message.Rfc822 Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nmessage/rfc822 media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/83.html\">MediaTypes.Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Rfc822 = \"message/rfc822\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/15.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public ErrorVisitor ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/150.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Net Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Net Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Abstractions shared by all internet protocols.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/223.html\">InvalidResponseException</a></td>\r\n<td>An invalid response was generated from the server.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/224.html\">Texty</a></td>\r\n<td>Abstracts text-based protocols.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/151.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Net.Mail Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Net.Mail Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        MIME message parsing.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/154.html\">Message</a></td>\r\n<td>Extension methods to parse and process MailMessages.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/155.html\">Mime</a></td>\r\n<td>MIME parsing functions.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/156.html\">QuotedPrintable</a></td>\r\n<td>A quoted-printable encoder/decoder.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/152.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Net.Pop3 Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Net.Pop3 Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Implementation of the Pop3 protocol.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/192.html\">Pop3Client</a></td>\r\n<td>Implements the client-side POP3 connection protocol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/193.html\">Pop3Header</a></td>\r\n<td>Represents a pop3 header.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/194.html\">Pop3Session</a></td>\r\n<td>Implements the client-side pop3 session protocol.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/153.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Rfc Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Rfc Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Implementations of some common RFC standards.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/219.html\">Rfc822</a></td>\r\n<td>A parser for RFC 822 strings.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/154.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to parse and process MailMessages.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Message </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/164.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/155.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMIME parsing functions.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Mime </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/183.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/156.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA quoted-printable encoder/decoder.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class QuotedPrintable </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nReferences:\r\n            http://www.freesoft.org/CIE/RFC/1521/6.htm\r\n            http://www.technology.niagarac.on.ca/courses/comp530/images/AsciiTable.jpg\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/157.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/157.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA quoted-printable encoder/decoder.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/158.html\">FromQuotedPrintable</a></td>\r\n<td>Overloaded. Decodes a quoted-printable encoded string.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/159.html\">ToQuotedPrintable</a></td>\r\n<td>Overloaded. Encode the given string in quoted-printable encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/158.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.FromQuotedPrintable Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.FromQuotedPrintable Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecodes a quoted-printable encoded string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/162.html\">QuotedPrintable.FromQuotedPrintable (string, int)</a></td>\r\n<td>Decodes a quoted-printable encoded character.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/163.html\">QuotedPrintable.FromQuotedPrintable (string)</a></td>\r\n<td>Decodes a quoted-printable encoded string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/159.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.ToQuotedPrintable Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.ToQuotedPrintable Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncode the given string in quoted-printable encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/160.html\">QuotedPrintable.ToQuotedPrintable (string)</a></td>\r\n<td>Encode the given string in quoted-printable encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/161.html\">QuotedPrintable.ToQuotedPrintable (char)</a></td>\r\n<td>Encode a character in quoted-printable encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/16.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Add Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Add Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Add (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/160.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.ToQuotedPrintable Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.ToQuotedPrintable Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncode the given string in quoted-printable encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToQuotedPrintable (\n        string <i>input</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to encode.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe quoted-printable encoded string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/161.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.ToQuotedPrintable Method (char)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.ToQuotedPrintable Method (char)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncode a character in quoted-printable encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToQuotedPrintable (\n        char <i>c</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">c</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe character to encode.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encoded character.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/162.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.FromQuotedPrintable Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.FromQuotedPrintable Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecodes a quoted-printable encoded character.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static char FromQuotedPrintable (\n        string <i>input</i>,\n        int <i>index</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to decode.\r\n</div>\r\n<div class=\"CommentParameterName\">index</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start decoding.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded char.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/163.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QuotedPrintable.FromQuotedPrintable Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QuotedPrintable.FromQuotedPrintable Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecodes a quoted-printable encoded string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/156.html\">QuotedPrintable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string FromQuotedPrintable (\n        string <i>input</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to decode.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/164.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to parse and process MailMessages.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/165.html\">LineLength</a></td>\r\n<td>The line length for e-mail messages.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/166.html\">ContentTransferEncoding</a></td>\r\n<td>Overloaded. Returns the Content-Transfer-Encoding header of the e-mail.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/167.html\">ContentType</a></td>\r\n<td>Returns the Content-Type for the e-mail.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/168.html\">DecodeBody</a></td>\r\n<td>Decode the e-mail body given the raw message string, and the Content-Transfer-Encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/169.html\">DecodeSubject</a></td>\r\n<td>Decodes a subject line.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/170.html\">EncodeBody</a></td>\r\n<td>Encode the e-mail body given the raw body string, and the Content-Transfer-Encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/171.html\">InReplyTo</a></td>\r\n<td>Overloaded. Returns the In-Reply-To header.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/172.html\">MessageId</a></td>\r\n<td>Overloaded. Returns the Message-ID header of the e-mail.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/173.html\">ParseMailMessage</a></td>\r\n<td>Parse a string into a MailMessage.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/174.html\">Reply</a></td>\r\n<td>Construct a reply from the original MailMessage.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/175.html\">ThreadIndex</a></td>\r\n<td>Returns the Thread-Index header.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/176.html\">ToRaw</a></td>\r\n<td>Writes the message to a string in the given encoding.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/165.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.LineLength Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.LineLength Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe line length for e-mail messages.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const int LineLength = 76</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/166.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ContentTransferEncoding Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ContentTransferEncoding Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Content-Transfer-Encoding header of the e-mail.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/179.html\">Message.ContentTransferEncoding (MailMessage)</a></td>\r\n<td>Returns the Content-Transfer-Encoding header of the e-mail.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/180.html\">Message.ContentTransferEncoding (MailMessage, TransferEncoding)</a></td>\r\n<td>Sets the Content-Transfer-Encoding header.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/167.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ContentType Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ContentType Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Content-Type for the e-mail.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ContentType ContentType (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail to inspect.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Type in the e-mail headers.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/168.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.DecodeBody Method (string, int, int, TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.DecodeBody Method (string, int, int, TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecode the e-mail body given the raw message string, and the Content-Transfer-Encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string DecodeBody (\n        string <i>raw</i>,\n        int <i>start</i>,\n        int <i>length</i>,\n        TransferEncoding <i>contentTransferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">raw</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe raw message string.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which to start decoding.\r\n</div>\r\n<div class=\"CommentParameterName\">length</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe length of the message body.\r\n</div>\r\n<div class=\"CommentParameterName\">contentTransferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Transfer-Encoding of the body.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded body of the e-mail.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/169.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.DecodeSubject Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.DecodeSubject Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecodes a subject line.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string DecodeSubject (\n        string <i>subject</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">subject</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encoded subject line.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA decoded subject line.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/17.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.AddChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.AddChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T AddChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/170.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.EncodeBody Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.EncodeBody Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncode the e-mail body given the raw body string, and the Content-Transfer-Encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string EncodeBody (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe encoded body of the e-mail.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/171.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.InReplyTo Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.InReplyTo Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the In-Reply-To header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/181.html\">Message.InReplyTo (MailMessage)</a></td>\r\n<td>Returns the In-Reply-To header.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/182.html\">Message.InReplyTo (MailMessage, string)</a></td>\r\n<td>Sets the In-Reply-To header.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/172.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.MessageId Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.MessageId Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Message-ID header of the e-mail.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/177.html\">Message.MessageId (MailMessage)</a></td>\r\n<td>Returns the Message-ID header of the e-mail.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/178.html\">Message.MessageId (MailMessage, string)</a></td>\r\n<td>Sets the Message-ID header.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/173.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ParseMailMessage Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ParseMailMessage Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse a string into a MailMessage.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static MailMessage ParseMailMessage (\n        string <i>raw</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">raw</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail in raw string format.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA MailMessage object initialized from parsing the raw string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/174.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.Reply Method (MailMessage, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.Reply Method (MailMessage, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a reply from the original MailMessage.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static MailMessage Reply (\n        MailMessage <i>email</i>,\n        string <i>txt</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail to reply to.\r\n</div>\r\n<div class=\"CommentParameterName\">txt</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe body of the reply.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA new MailMessage corresponding to a reply to the given MailMessage.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/175.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ThreadIndex Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ThreadIndex Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Thread-Index header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ThreadIndex (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Thread-Index header value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/176.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ToRaw Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ToRaw Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nWrites the message to a string in the given encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string ToRaw (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/177.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.MessageId Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.MessageId Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Message-ID header of the e-mail.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string MessageId (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Message-ID header value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/178.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.MessageId Method (MailMessage, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.MessageId Method (MailMessage, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSets the Message-ID header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void MessageId (\n        MailMessage <i>email</i>,\n        string <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value of the header.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/179.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ContentTransferEncoding Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ContentTransferEncoding Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the Content-Transfer-Encoding header of the e-mail.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static TransferEncoding ContentTransferEncoding (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Transfer-Encoding header value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/18.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.And Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.And Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T And (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/180.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.ContentTransferEncoding Method (MailMessage, TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.ContentTransferEncoding Method (MailMessage, TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSets the Content-Transfer-Encoding header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void ContentTransferEncoding (\n        MailMessage <i>email</i>,\n        TransferEncoding <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value of the header.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/181.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.InReplyTo Method (MailMessage)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.InReplyTo Method (MailMessage)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the In-Reply-To header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string InReplyTo (\n        MailMessage <i>email</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe In-Reply-To header value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/182.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Message.InReplyTo Method (MailMessage, string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Message.InReplyTo Method (MailMessage, string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSets the In-Reply-To header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/154.html\">Message</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static void InReplyTo (\n        MailMessage <i>email</i>,\n        string <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">email</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe e-mail message to process.\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value of the header.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/183.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMIME parsing functions.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/184.html\">Decode</a></td>\r\n<td>Decode the e-mail body given the raw message string, and the Content-Transfer-Encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/185.html\">Encode</a></td>\r\n<td>Encode the raw bytes as a string according to the Content-Transfer-Encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/186.html\">FromTransferEncoding</a></td>\r\n<td>Returns a string representation of the Content-Transfer-Encoding.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/187.html\">HasMultipleParts</a></td>\r\n<td>Check if the Content-Type indicates the message has multiple parts.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/188.html\">ParseMime</a></td>\r\n<td>Parse a MIME message.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/189.html\">RealBoundary</a></td>\r\n<td>Creates a boundary string as in raw messages.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/190.html\">ToContentType</a></td>\r\n<td>Parse a string representation of Content-Type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/191.html\">ToTransferEncoding</a></td>\r\n<td>Parse the given string for a Content-Transfer-Encoding value.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/184.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.Decode Method (string, int, int, TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.Decode Method (string, int, int, TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDecode the e-mail body given the raw message string, and the Content-Transfer-Encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static byte[] Decode (\n        string <i>raw</i>,\n        int <i>start</i>,\n        int <i>length</i>,\n        TransferEncoding <i>contentTransferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">raw</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe raw message string.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which to start decoding.\r\n</div>\r\n<div class=\"CommentParameterName\">length</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe length of the message body.\r\n</div>\r\n<div class=\"CommentParameterName\">contentTransferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Transfer-Encoding of the body.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded body of the e-mail.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/185.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.Encode Method (byte[], TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.Encode Method (byte[], TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nEncode the raw bytes as a string according to the Content-Transfer-Encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string Encode (\n        byte[] <i>data</i>,\n        TransferEncoding <i>contentTransferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">data</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe raw data bytes.\r\n</div>\r\n<div class=\"CommentParameterName\">contentTransferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Transfer-Encoding of the body.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe decoded body of the e-mail.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/186.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.FromTransferEncoding Method (TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.FromTransferEncoding Method (TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a string representation of the Content-Transfer-Encoding.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string FromTransferEncoding (\n        TransferEncoding <i>transferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">transferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe TransferEncoding to transform.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe canonical string representation of the TransferEncoding.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/187.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.HasMultipleParts Method (ContentType)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.HasMultipleParts Method (ContentType)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCheck if the Content-Type indicates the message has multiple parts.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool HasMultipleParts (\n        ContentType <i>contentType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">contentType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe ContentType to check.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Content-Type indicates the message has multiple parts.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/188.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.ParseMime Method (string, int, ContentType, ContentDisposition, TransferEncoding)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.ParseMime Method (string, int, ContentType, ContentDisposition, TransferEncoding)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse a MIME message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;Attachment&gt; ParseMime (\n        string <i>message</i>,\n        int <i>offset</i>,\n        ContentType <i>contentType</i>,\n        ContentDisposition <i>contentDisposition</i>,\n        TransferEncoding <i>transferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">message</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe raw message string.\r\n</div>\r\n<div class=\"CommentParameterName\">offset</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which to begin parsing.\r\n</div>\r\n<div class=\"CommentParameterName\">contentType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Type at 'offset'.\r\n</div>\r\n<div class=\"CommentParameterName\">contentDisposition</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Content-Disposition at 'offset'.\r\n</div>\r\n<div class=\"CommentParameterName\">transferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe Transfer-Encoding at 'offset'.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA sequence of attachments corresponding to the embedded MIME messages.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/189.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.RealBoundary Method (ContentType)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.RealBoundary Method (ContentType)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreates a boundary string as in raw messages.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string RealBoundary (\n        ContentType <i>contentType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">contentType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe ContentType whose boundary we use.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns the string that is used as a real boundary in a raw message.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/19.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.AndAlso Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.AndAlso Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T AndAlso (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/190.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.ToContentType Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.ToContentType Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse a string representation of Content-Type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static ContentType ToContentType (\n        string <i>contentType</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">contentType</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to parse.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe concrete ContentType corresponding to the string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/191.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Mime.ToTransferEncoding Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Mime.ToTransferEncoding Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse the given string for a Content-Transfer-Encoding value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/155.html\">Mime</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/151.html\">Sasa.Net.Mail</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static TransferEncoding ToTransferEncoding (\n        string <i>transferEncoding</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">transferEncoding</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string to parse.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe TransferEncoding embedded in the string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/192.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplements the client-side POP3 connection protocol.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Pop3Client </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/206.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/193.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a pop3 header.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Pop3Header :&nbsp;</td>\n<td>\nValueType,<br />IEquatable&lt;Pop3Header&gt;\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/195.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/194.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplements the client-side pop3 session protocol.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Pop3Session :&nbsp;</td>\n<td>\nIDisposable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/213.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/195.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRepresents a pop3 header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/196.html\">Pop3Header</a></td>\r\n<td>Parse a header returned by a pop3 server.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/197.html\">Equals</a></td>\r\n<td>Overloaded. Compare two Pop3Header for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/198.html\">GetHashCode</a></td>\r\n<td>Hash code of the header.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/199.html\">operator !=</a></td>\r\n<td>Compares two Pop3Header values for inequality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/200.html\">operator ==</a></td>\r\n<td>Compares two Pop3Header values for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/201.html\">ToString</a></td>\r\n<td>Return a string representation of this header.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/202.html\">ByteCount</a></td>\r\n<td>The alleged number of bytes in the message.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/203.html\">MessageNumber</a></td>\r\n<td>The message number on the server.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/196.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse a header returned by a pop3 server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pop3Header (\n        string <i>line</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">line</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe header returned by the server.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThe format of a header is:\r\n            MessageNumber[whitespace]ByteCount\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/197.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.Equals Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.Equals Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two Pop3Header for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/204.html\">Pop3Header.Equals (Pop3Header)</a></td>\r\n<td>Compare two Pop3Header for equality.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/205.html\">Pop3Header.Equals (object)</a></td>\r\n<td>Compare two objects for equality.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/198.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.GetHashCode Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.GetHashCode Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nHash code of the header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override int GetHashCode ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nHash code of the header.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/199.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.operator != Method (Pop3Header, Pop3Header)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.operator != Method (Pop3Header, Pop3Header)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Pop3Header values for inequality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator != (\n        Pop3Header <i>first</i>,\n        Pop3Header <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pop3Header.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pop3Header.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Pop3Headers are not equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/2.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.NotEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.NotEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression NotEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/20.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.ArrayIndex Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.ArrayIndex Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T ArrayIndex (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/200.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.operator == Method (Pop3Header, Pop3Header)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.operator == Method (Pop3Header, Pop3Header)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompares two Pop3Header values for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static bool operator == (\n        Pop3Header <i>first</i>,\n        Pop3Header <i>second</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">first</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first Pop3Header.\r\n</div>\r\n<div class=\"CommentParameterName\">second</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second Pop3Header.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nReturns true if the Pop3Headers are equal, and false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/201.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn a string representation of this header.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe header formatted as a pop3 server would return it.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/202.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.ByteCount Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.ByteCount Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe alleged number of bytes in the message.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int ByteCount { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/203.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.MessageNumber Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.MessageNumber Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe message number on the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int MessageNumber { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/204.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.Equals Method (Pop3Header)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.Equals Method (Pop3Header)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two Pop3Header for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Equals (\n        Pop3Header <i>other</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">other</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe instance to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if they are equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/205.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Header.Equals Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Header.Equals Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompare two objects for equality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/193.html\">Pop3Header</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override bool Equals (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe object to compare against.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nTrue if equal, false otherwise.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/206.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplements the client-side POP3 connection protocol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/207.html\">Pop3Client</a></td>\r\n<td>Overloaded. Returns a Pop3Client constructed from two arbitrary text stream generators.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/208.html\">Connect</a></td>\r\n<td>Connect to the pop3 server and run a session.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/209.html\">Connect&lt;R&gt;</a></td>\r\n<td>Connect to the pop3 server and run a session.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/210.html\">Credentials</a></td>\r\n<td>The credentials to use when logging on.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/207.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a Pop3Client constructed from two arbitrary text stream generators.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/211.html\">Pop3Client (NetworkCredential, Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</a></td>\r\n<td>Returns a Pop3Client constructed from two arbitrary text stream generators.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/212.html\">Pop3Client (Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</a></td>\r\n<td>Returns a Pop3Client constructed from two arbitrary text stream generators.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/208.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client.Connect Method (Action&lt;Pop3Session&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client.Connect Method (Action&lt;Pop3Session&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConnect to the pop3 server and run a session.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Connect (\n        Action&lt;Pop3Session&gt; <i>runSession</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">runSession</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe body of the session.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/209.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client.Connect&lt;R&gt; Method (Func&lt;Pop3Session, R&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client.Connect&lt;R&gt; Method (Func&lt;Pop3Session, R&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConnect to the pop3 server and run a session.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public R Connect&lt;R&gt; (\n        Func&lt;Pop3Session, R&gt; <i>runSession</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">R</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the value returned.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">runSession</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe body of the session.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA value computed after a session is run.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/21.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.ArrayLength Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.ArrayLength Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T ArrayLength (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/210.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client.Credentials Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client.Credentials Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe credentials to use when logging on.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public NetworkCredential Credentials { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/211.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client Constructor (NetworkCredential, Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client Constructor (NetworkCredential, Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a Pop3Client constructed from two arbitrary text stream generators.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pop3Client (\n        NetworkCredential <i>credentials</i>,\n        Func&lt;TextReader&gt; <i>read</i>,\n        Func&lt;TextWriter&gt; <i>write</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">credentials</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe credentials to use when connecting.\r\n</div>\r\n<div class=\"CommentParameterName\">read</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream generator.\r\n</div>\r\n<div class=\"CommentParameterName\">write</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output stream generator.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/212.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Client Constructor (Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Client Constructor (Func&lt;TextReader&gt;, Func&lt;TextWriter&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a Pop3Client constructed from two arbitrary text stream generators.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/192.html\">Pop3Client</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Pop3Client (\n        Func&lt;TextReader&gt; <i>read</i>,\n        Func&lt;TextWriter&gt; <i>write</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">read</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input stream generator.\r\n</div>\r\n<div class=\"CommentParameterName\">write</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output stream generator.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/213.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nImplements the client-side pop3 session protocol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/214.html\">Delete</a></td>\r\n<td>Delete the given message from the server.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/215.html\">Dispose</a></td>\r\n<td>Dispose of the pop3 connection.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/216.html\">List</a></td>\r\n<td>List the messages available on the server.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/217.html\">Reset</a></td>\r\n<td>Undoes any deletions made during this session.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/218.html\">Retrieve</a></td>\r\n<td>Retrieve the given message from the server.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/214.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session.Delete Method (Pop3Header)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session.Delete Method (Pop3Header)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDelete the given message from the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Delete (\n        Pop3Header <i>header</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">header</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message to delete.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/215.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session.Dispose Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session.Dispose Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDispose of the pop3 connection.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Dispose ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/216.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session.List Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session.List Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nList the messages available on the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerable&lt;Pop3Header&gt; List ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe list of available messages.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/217.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session.Reset Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session.Reset Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nUndoes any deletions made during this session.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Reset ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/218.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Pop3Session.Retrieve Method (Pop3Header)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Pop3Session.Retrieve Method (Pop3Header)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRetrieve the given message from the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/194.html\">Pop3Session</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/152.html\">Sasa.Net.Pop3</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public MailMessage Retrieve (\n        Pop3Header <i>header</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">header</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message to retrieve.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe message string.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/219.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Rfc822 Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Rfc822 Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA parser for RFC 822 strings.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/153.html\">Sasa.Rfc</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Rfc822 </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/220.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/22.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Call Method (MethodCallExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Call Method (MethodCallExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Call (\n        MethodCallExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/220.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Rfc822 Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Rfc822 Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA parser for RFC 822 strings.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/219.html\">Rfc822</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/153.html\">Sasa.Rfc</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/221.html\">HeaderLength</a></td>\r\n<td>Compute the length of the headers based on the expected terminators.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/222.html\">ParseHeaders</a></td>\r\n<td>Return an enumeration of key-value pairs for all the headers in the given string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/221.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Rfc822.HeaderLength Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Rfc822.HeaderLength Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCompute the length of the headers based on the expected terminators.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/219.html\">Rfc822</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/153.html\">Sasa.Rfc</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static int HeaderLength (\n        string <i>buffer</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">buffer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string containing the headers.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to begin parsing the headers.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe length in characters of the headers.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/222.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Rfc822.ParseHeaders Method (string, int, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Rfc822.ParseHeaders Method (string, int, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn an enumeration of key-value pairs for all the headers in the given string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/219.html\">Rfc822</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/153.html\">Sasa.Rfc</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;KeyValuePair&lt;string, string&gt;&gt; ParseHeaders (\n        string <i>buffer</i>,\n        int <i>offset</i>,\n        int <i>length</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">buffer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe raw string containing the headers.\r\n</div>\r\n<div class=\"CommentParameterName\">offset</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to begin parsing headers.\r\n</div>\r\n<div class=\"CommentParameterName\">length</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe length of the headers.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration of header:value pairs.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/223.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>InvalidResponseException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">InvalidResponseException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn invalid response was generated from the server.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class InvalidResponseException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/231.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/224.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAbstracts text-based protocols.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Texty :&nbsp;</td>\n<td>\nIDisposable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/225.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/225.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAbstracts text-based protocols.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/226.html\">Texty</a></td>\r\n<td>Construct a new instance of a Texty-protocol stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/227.html\">Dispose</a></td>\r\n<td>Dispose any resources used by this instance.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/228.html\">Execute</a></td>\r\n<td>Sends a command to be executed on the server.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/229.html\">ReadLine</a></td>\r\n<td>Read the most recent response sent by the server.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/230.html\">Send</a></td>\r\n<td>Send data to the server.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/226.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty Constructor (TextReader, TextWriter)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty Constructor (TextReader, TextWriter)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new instance of a Texty-protocol stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Texty (\n        TextReader <i>input</i>,\n        TextWriter <i>output</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input text stream.\r\n</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe output text stream.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/227.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty.Dispose Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty.Dispose Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDispose any resources used by this instance.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Dispose ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/228.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty.Execute Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty.Execute Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSends a command to be executed on the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string Execute (\n        string <i>command</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">command</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe command to send.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe response sent by the server.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/229.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty.ReadLine Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty.ReadLine Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRead the most recent response sent by the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string ReadLine ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe most recent response.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/23.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Coalesce Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Coalesce Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Coalesce (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/230.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Texty.Send Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Texty.Send Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSend data to the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/224.html\">Texty</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Send (\n        string <i>data</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">data</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe data to send.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/231.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>InvalidResponseException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">InvalidResponseException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn invalid response was generated from the server.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/223.html\">InvalidResponseException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/232.html\">InvalidResponseException</a></td>\r\n<td>Construct a new InvalidResponseException.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/232.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>InvalidResponseException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">InvalidResponseException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a new InvalidResponseException.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/223.html\">InvalidResponseException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/150.html\">Sasa.Net</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/8.html\">Sasa.Net</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public InvalidResponseException (\n        string <i>m</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">m</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe string describing the error.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/233.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Operators Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Operators Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Generic arithmetic and logical operators for primitive CIL types. These are unsafe to use for types that have overloadable operators.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a></td>\r\n<td>Class encapsulating the polymorphic number opcodes.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a></td>\r\n<td>Class encapsulating the polymorphic number opcodes.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/234.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nClass encapsulating the polymorphic number opcodes.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Arithmetic&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct, IComparable, IFormattable, IConvertible, IComparable&lt;T&gt;, IEquatable&lt;T&gt;</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type implementing arithmetic operators.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nWARNING: this class is only safe to use for the primitive numeric types for which add, subtract, etc. opcodes are defined.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/236.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/235.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nClass encapsulating the polymorphic number opcodes.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Logical&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: struct, IComparable, IConvertible, IComparable&lt;T&gt;, IEquatable&lt;T&gt;</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type implementing the logical operators.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nWARNING: this class is only safe to use for the primitive logical types for which and, or, etc. opcodes are defined.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/243.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/236.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nClass encapsulating the polymorphic number opcodes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/237.html\">Add</a></td>\r\n<td>Adds two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/238.html\">Divide</a></td>\r\n<td>Divide two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/239.html\">Multiply</a></td>\r\n<td>Multiply two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/240.html\">Negate</a></td>\r\n<td>Negates an argument.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/241.html\">Remainder</a></td>\r\n<td>Modulus two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/242.html\">Subtract</a></td>\r\n<td>Subtracts two arguments.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/237.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Add Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Add Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdds two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Add (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/238.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Divide Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Divide Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDivide two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Divide (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/239.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Multiply Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Multiply Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMultiply two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Multiply (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/24.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Conditional Method (ConditionalExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Conditional Method (ConditionalExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Conditional (\n        ConditionalExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/240.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Negate Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Negate Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nNegates an argument.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Negate (\n        T <i>arg0</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/241.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Remainder Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Remainder Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nModulus two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Remainder (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/242.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Arithmetic&lt;T&gt;.Subtract Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Arithmetic&lt;T&gt;.Subtract Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSubtracts two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/234.html\">Arithmetic&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Subtract (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/243.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nClass encapsulating the polymorphic number opcodes.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/244.html\">And</a></td>\r\n<td>AND of two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/245.html\">Not</a></td>\r\n<td>Negates an argument.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/246.html\">Or</a></td>\r\n<td>OR of two arguments.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/247.html\">Xor</a></td>\r\n<td>XOR of two arguments.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/244.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt;.And Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt;.And Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAND of two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T And (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/245.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt;.Not Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt;.Not Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nNegates an argument.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Not (\n        T <i>arg0</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/246.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt;.Or Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt;.Or Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nOR of two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Or (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/247.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Logical&lt;T&gt;.Xor Method (T, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Logical&lt;T&gt;.Xor Method (T, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nXOR of two arguments.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/235.html\">Logical&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/233.html\">Sasa.Operators</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/9.html\">Sasa.Operators</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T Xor (\n        T <i>arg0</i>,\n        T <i>arg1</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">arg0</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">arg1</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/248.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Parsing Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Parsing Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Shared abstractions for all parsers.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/286.html\">ParseException</a></td>\r\n<td>Describes a parse error.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/249.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Parsing.Pratt Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Parsing.Pratt Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader15\" onclick=\"javascript: SetSectionVisibility(15, true); SetExpandCollapseAllToCollapseAll();\">Delegates</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        An extensible, statically typed Pratt-parser.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a></td>\r\n<td>Inherit from this class to implement a typed grammar.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/251.html\">PrattParser&lt;T&gt;</a></td>\r\n<td>A parser for a given input text.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a></td>\r\n<td>A symbol definition.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a></td>\r\n<td>A semantic token encapsulating all the information needed to\r\n            parse a lexed input.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader15\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg15\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(15);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(15);\">\r\nPublic Delegates\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv15\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicDelegate.gif\" alt=\"Public Delegate\" /></td>\r\n<td><a href=\"../../Contents/3/254.html\">Scanner</a></td>\r\n<td>A function that scans <span class=\"Code\">input</span> starting from <span class=\"Code\">start</span>\r\n            for a specific pattern. The return value is the new parser position.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/25.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Constant Method (ConstantExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Constant Method (ConstantExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Constant (\n        ConstantExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/250.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n<a href=\"#SectionHeader3\" onclick=\"javascript: SetSectionVisibility(3, true); SetExpandCollapseAllToCollapseAll();\">Example</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInherit from this class to implement a typed grammar.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public abstract class Grammar&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of values parsed from the input.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nImplements a simple single-state Pratt-style parser with a longest\r\n            match precedence-based lexer. Clients need only inherit from this class,\r\n            specify the type of elements being parsed, and in the constructor function\r\n            specifying the set of parsable operators with the associated semantic action.\r\n            \r\n            Pratt-parsers are effectively Turing complete, so they can parse any grammar imaginable,\r\n            although the predefined combinators encourage context-free grammars.\r\n            \r\n            References:\r\n            <ul><li><a href=\"http://effbot.org/zone/simple-top-down-parsing.htm\">http://effbot.org/zone/simple-top-down-parsing.htm</a></li><li><a href=\"http://javascript.crockford.com/tdop/tdop.html\">http://javascript.crockford.com/tdop/tdop.html</a></li></ul>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/264.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader3\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg3\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(3);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(3);\">\r\nExample\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv3\" class=\"SectionContainer\">\r\nHere is a simple calculator as an example:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>class Calculator : Grammar&lt;int&gt;\r\n{\r\n    public Calculator()\r\n    {\r\n        Infix(\"+\", 10, Add);   Infix(\"-\", 10, Sub);\r\n        Infix(\"*\", 20, Mul);   Infix(\"/\", 20, Div);\r\n        InfixR(\"^\", 30, Pow);  Postfix(\"!\", 30, Fact);\r\n        Prefix(\"-\", 100, Neg); Prefix(\"+\", 100, Pos);\r\n        Group(\"(\", \")\", int.MaxValue);\r\n        Match(\"(digit)\", char.IsDigit, 1, Int);\r\n        SkipWhile(char.IsWhiteSpace);\r\n    }\r\n\r\n    int Int(string lit) { return int.Parse(lit); }\r\n    int Add(int lhs, int rhs) { return lhs + rhs; }\r\n    int Sub(int lhs, int rhs) { return lhs - rhs; }\r\n    int Mul(int lhs, int rhs) { return lhs * rhs; }\r\n    int Div(int lhs, int rhs) { return lhs / rhs; }\r\n    int Pow(int lhs, int rhs) { return (int)Math.Pow(lhs, rhs); }\r\n    int Neg(int arg) { return -arg; }\r\n    int Pos(int arg) { return arg; }\r\n    int Fact(int arg)\r\n    {\r\n        return arg == 0 || arg == 1 ? 1 : arg * Fact(arg - 1);\r\n    }\r\n}\r\n</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/251.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PrattParser&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PrattParser&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA parser for a given input text.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class PrattParser&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type to be parsed from the text.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/289.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/252.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA symbol definition.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Symbol&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of parser values.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/293.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/253.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA semantic token encapsulating all the information needed to\r\n            parse a lexed input.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class Token&lt;T&gt; </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of value parsed by the token.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/255.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/254.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Scanner Delegate</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Scanner Delegate</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA function that scans <span class=\"Code\">input</span> starting from <span class=\"Code\">start</span>\r\n            for a specific pattern. The return value is the new parser position.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public delegate int Scanner (\n        string <i>input</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe parser input string.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start searching.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index the match completed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/255.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA semantic token encapsulating all the information needed to\r\n            parse a lexed input.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/256.html\">Token</a></td>\r\n<td>Create a semantic token.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/257.html\">Led</a></td>\r\n<td>Execute the left denotation function of this token.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/258.html\">Nud</a></td>\r\n<td>Execute the null denotation function of this token.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Virtual.gif\" alt=\"Virtual\" /></td>\r\n<td><a href=\"../../Contents/3/259.html\">ToString</a></td>\r\n<td>Returns a string representation of this token.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/260.html\">Id</a></td>\r\n<td>The token identifier.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/261.html\">LeftBindingPower</a></td>\r\n<td>\"Stickiness\" to the left.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/262.html\">LeftDenotation</a></td>\r\n<td>Node has something to the left, ie. postfix or infix.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/263.html\">NullDenotation</a></td>\r\n<td>Node has nothing to its left, ie. prefix. The null denotation\r\n            is transparently memoized by <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a>.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/256.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt; Constructor (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt; Constructor (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreate a semantic token.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Token (\n        string <i>id</i>,\n        int <i>leftBindingPower</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">id</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe token identifier; sometimes this is the symbol itself.\r\n</div>\r\n<div class=\"CommentParameterName\">leftBindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left binding power, aka precedence.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/257.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.Led Method (PrattParser&lt;T&gt;, T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.Led Method (PrattParser&lt;T&gt;, T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the left denotation function of this token.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Led (\n        PrattParser&lt;T&gt; <i>parser</i>,\n        T <i>left</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">parser</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe parser state.\r\n</div>\r\n<div class=\"CommentParameterName\">left</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value to the left of this token.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left denotation of this token.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/258.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.Nud Method (PrattParser&lt;T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.Nud Method (PrattParser&lt;T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the null denotation function of this token.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Nud (\n        PrattParser&lt;T&gt; <i>parser</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">parser</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value for the null denotation of this token.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/259.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.ToString Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.ToString Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a string representation of this token.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override string ToString ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of this token.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/26.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Convert Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Convert Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Convert (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/260.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.Id Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.Id Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe token identifier.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string Id { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/261.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.LeftBindingPower Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.LeftBindingPower Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\"Stickiness\" to the left.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int LeftBindingPower { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/262.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.LeftDenotation Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.LeftDenotation Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nNode has something to the left, ie. postfix or infix.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;PrattParser&lt;T&gt;, T, T&gt; LeftDenotation { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/263.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Token&lt;T&gt;.NullDenotation Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Token&lt;T&gt;.NullDenotation Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nNode has nothing to its left, ie. prefix. The null denotation\r\n            is transparently memoized by <a href=\"../../Contents/1/228.html\">Lazy&lt;T&gt;</a>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/253.html\">Token&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;PrattParser&lt;T&gt;, T&gt; NullDenotation { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/264.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nInherit from this class to implement a typed grammar.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/265.html\">Grammar</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods</span>\r\n <span class=\"SeeAlsoInSectionHeader\">(see also: <a href=\"#SectionHeader37\" onclick=\"javascript: SetSectionVisibility(37, true); SetExpandCollapseAllToCollapseAll();\">Protected</a> Methods)</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/266.html\">Parse</a></td>\r\n<td>Parse the given text and return the corresponding value, or throw a parse error.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader37\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg37\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(37);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(37);\">\r\nProtected Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv37\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/267.html\">Any</a></td>\r\n<td>A scanner that matches any in a sequence of tokens.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/268.html\">Char</a></td>\r\n<td>Scanner for a particular character.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/269.html\">Digits</a></td>\r\n<td>A scanner for digits.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/270.html\">Group</a></td>\r\n<td>A grouping operator, typically parenthesis of some sort.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/271.html\">Infix</a></td>\r\n<td>Left-associative infix symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/272.html\">InfixR</a></td>\r\n<td>Right-associative infix symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/273.html\">Letters</a></td>\r\n<td>A scanner for letters.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/274.html\">LettersOrDigits</a></td>\r\n<td>A scanner for letters or digits.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/275.html\">Match</a></td>\r\n<td>A symbol that matches a character predicate.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/276.html\">Postfix</a></td>\r\n<td>Generate a postfix operator symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/277.html\">Prefix</a></td>\r\n<td>Generate a prefix symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/278.html\">ScanLiteral</a></td>\r\n<td>A scanner that matches a literal value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/279.html\">Skip</a></td>\r\n<td>Creates a symbol for characters that are to be skipped, whitespace for example.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/280.html\">SkipWhile</a></td>\r\n<td>Creates a symbol for characters that are to be skipped, whitespace for example.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/281.html\">Symbol</a></td>\r\n<td>Overloaded. Generates a symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/282.html\">TernaryInfix</a></td>\r\n<td>Ternary operators, like \"e ? e : e\".</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/283.html\">TernaryPrefix</a></td>\r\n<td>Ternary operators, like \"if e then e else e\".</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/284.html\">While</a></td>\r\n<td>Returns a scanner forwards the stream while a predicate is satisfied.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/285.html\">WhiteSpace</a></td>\r\n<td>A scanner for whitespace.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/265.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt; Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt; Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Grammar ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/266.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Parse Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Parse Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Exceptions</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse the given text and return the corresponding value, or throw a parse error.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Parse (\n        string <i>text</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">text</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe text to parse.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value parsed from the text.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nExceptions\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"25%\" />\r\n<col width=\"75%\" />\r\n<tr>\r\n<th>Exception type</th>\r\n<th>Condition</th>\r\n</tr>\r\n<tr>\r\n<td><a href=\"../../Contents/3/286.html\">ParseException</a></td>\r\n<td>Thrown when the text has an invalid structure.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/267.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Any Method (string[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Any Method (string[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner that matches any in a sequence of tokens.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static Scanner Any (\n        params string[] <i>tokens</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">tokens</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe list of tokens to match.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA Scanner that matches the given tokens.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/268.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Char Method (char)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Char Method (char)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nScanner for a particular character.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static Scanner Char (\n        char <i>c</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">c</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe character to scan for.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the scan.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/269.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Digits Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Digits Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner for digits.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static int Digits (\n        string <i>input</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to scan.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start scanning.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the scan.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/27.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.ConvertChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.ConvertChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T ConvertChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/270.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Group Method (string, string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Group Method (string, string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA grouping operator, typically parenthesis of some sort.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Group (\n        string <i>leftGrouping</i>,\n        string <i>rightGrouping</i>,\n        int <i>bindingPower</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">leftGrouping</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left grouping symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">rightGrouping</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right grouping symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA grouping operator.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/271.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Infix Method (string, int, Func&lt;T, T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Infix Method (string, int, Func&lt;T, T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nLeft-associative infix symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Infix (\n        string <i>op</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T, T&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">op</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe operator symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function transforming the infix token.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA right-associative operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/272.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.InfixR Method (string, int, Func&lt;T, T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.InfixR Method (string, int, Func&lt;T, T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nRight-associative infix symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; InfixR (\n        string <i>op</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T, T&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">op</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe operator symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function transforming the infix token.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA right-associative operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/273.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Letters Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Letters Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner for letters.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static int Letters (\n        string <i>input</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to scan.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start scanning.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the scan.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/274.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.LettersOrDigits Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.LettersOrDigits Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner for letters or digits.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static int LettersOrDigits (\n        string <i>input</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to scan.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start scanning.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the scan.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/275.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Match Method (string, Predicate&lt;char&gt;, int, Func&lt;string, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Match Method (string, Predicate&lt;char&gt;, int, Func&lt;string, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA symbol that matches a character predicate.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Match (\n        string <i>id</i>,\n        Predicate&lt;char&gt; <i>pred</i>,\n        int <i>bindingPower</i>,\n        Func&lt;string, T&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">id</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe identifier for this symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">pred</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA predicate over characters identifying legitimate members.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nOperator's binding power.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nParsing function taking a string to a <span class=\"Code\">T</span>.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nLiteral symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/276.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Postfix Method (string, int, Func&lt;T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Postfix Method (string, int, Func&lt;T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate a postfix operator symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Postfix (\n        string <i>op</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">op</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe operator symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe function transforming the postfix token.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA postfix operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/277.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Prefix Method (string, int, Func&lt;T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Prefix Method (string, int, Func&lt;T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerate a prefix symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Prefix (\n        string <i>op</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T&gt; <i>selector</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">op</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPrefix operator symbol.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nOperator's binding power.\r\n</div>\r\n<div class=\"CommentParameterName\">selector</div>\r\n<div class=\"ParameterCommentContainer\">\r\nMapping function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPrefix operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/278.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.ScanLiteral Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.ScanLiteral Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner that matches a literal value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static Scanner ScanLiteral (\n        string <i>lit</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">lit</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/279.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Skip Method (Scanner)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Skip Method (Scanner)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreates a symbol for characters that are to be skipped, whitespace for example.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Skip (\n        Scanner <i>scanner</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">scanner</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe scanner identifying the characters to skip.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA symbol for skipped characters.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/28.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Divide Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Divide Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Divide (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/280.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.SkipWhile Method (Predicate&lt;char&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.SkipWhile Method (Predicate&lt;char&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreates a symbol for characters that are to be skipped, whitespace for example.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; SkipWhile (\n        Predicate&lt;char&gt; <i>pred</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">pred</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe predicate determing the characters to skip.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA symbol for skipped characters.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/281.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Symbol Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Symbol Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates a symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/287.html\">Grammar&lt;T&gt;.Symbol (string)</a></td>\r\n<td>Generates a symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/288.html\">Grammar&lt;T&gt;.Symbol (string, int)</a></td>\r\n<td>Generates a symbol with the given left binding power.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/282.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.TernaryInfix Method (string, string, int, Func&lt;T, T, T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.TernaryInfix Method (string, string, int, Func&lt;T, T, T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTernary operators, like \"e ? e : e\".\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; TernaryInfix (\n        string <i>infix0</i>,\n        string <i>infix1</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T, T, T&gt; <i>parse</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">infix0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first infix symbol of the ternary operator.\r\n</div>\r\n<div class=\"CommentParameterName\">infix1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second infix symbol of the ternary operator.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">parse</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe parsing function for each branch.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA ternary operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/283.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.TernaryPrefix Method (string, string, string, int, Func&lt;T, T, T, T&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.TernaryPrefix Method (string, string, string, int, Func&lt;T, T, T, T&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nTernary operators, like \"if e then e else e\".\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; TernaryPrefix (\n        string <i>prefix</i>,\n        string <i>infix0</i>,\n        string <i>infix1</i>,\n        int <i>bindingPower</i>,\n        Func&lt;T, T, T, T&gt; <i>parse</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">prefix</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe symbol starting the ternary operator.\r\n</div>\r\n<div class=\"CommentParameterName\">infix0</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe first infix symbol in the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">infix1</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe second infix symbol in the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">bindingPower</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe binding power of the operator.\r\n</div>\r\n<div class=\"CommentParameterName\">parse</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe parsing function.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA ternary operator symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/284.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.While Method (Predicate&lt;char&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.While Method (Predicate&lt;char&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns a scanner forwards the stream while a predicate is satisfied.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static Scanner While (\n        Predicate&lt;char&gt; <i>pred</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">pred</div>\r\n<div class=\"ParameterCommentContainer\">\r\nPredicate on characters.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nScanner that uses the predicate to determine the end of a match.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/285.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.WhiteSpace Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.WhiteSpace Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA scanner for whitespace.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected static int WhiteSpace (\n        string <i>input</i>,\n        int <i>start</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to scan.\r\n</div>\r\n<div class=\"CommentParameterName\">start</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index to start scanning.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe end of the scan.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/286.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ParseException Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ParseException Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDescribes a parse error.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/248.html\">Sasa.Parsing</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class ParseException :&nbsp;</td>\n<td>\nException<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/303.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/287.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Symbol Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Symbol Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates a symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Symbol (\n        string <i>sym</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">sym</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe symbol identifier.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/288.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Grammar&lt;T&gt;.Symbol Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Grammar&lt;T&gt;.Symbol Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nGenerates a symbol with the given left binding power.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/250.html\">Grammar&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected Symbol&lt;T&gt; Symbol (\n        string <i>sym</i>,\n        int <i>lbp</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">sym</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe symbol identifier.\r\n</div>\r\n<div class=\"CommentParameterName\">lbp</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe left binding power.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/289.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PrattParser&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PrattParser&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA parser for a given input text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/251.html\">PrattParser&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/290.html\">Advance</a></td>\r\n<td>Checks that the current token matches the expected token specified by <span class=\"Code\">id</span>.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/291.html\">Parse</a></td>\r\n<td>Parse the next token sequence given the right binding power.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/292.html\">Token</a></td>\r\n<td>The current token in the stream.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/29.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Equal Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Equal Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Equal (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/290.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PrattParser&lt;T&gt;.Advance Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PrattParser&lt;T&gt;.Advance Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nChecks that the current token matches the expected token specified by <span class=\"Code\">id</span>.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/251.html\">PrattParser&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Advance (\n        string <i>id</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">id</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expected token identifier.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/291.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PrattParser&lt;T&gt;.Parse Method (int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PrattParser&lt;T&gt;.Parse Method (int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nParse the next token sequence given the right binding power.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/251.html\">PrattParser&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public T Parse (\n        int <i>rbp</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">rbp</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe right binding power to use when parsing.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe next parsed value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/292.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>PrattParser&lt;T&gt;.Token Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">PrattParser&lt;T&gt;.Token Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe current token in the stream.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/251.html\">PrattParser&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Token&lt;T&gt; Token { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/293.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA symbol definition.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/294.html\">Matched</a></td>\r\n<td>Returns the token for this symbol that matched the given value.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/295.html\">Scan</a></td>\r\n<td>Check whether the current symbol matches the input string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/296.html\">Id</a></td>\r\n<td>The symbol identifier.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/297.html\">Led</a></td>\r\n<td>The left denotation of the tokens generated from this symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/298.html\">LeftBindingPower</a></td>\r\n<td>The left binding power of the tokens generated from this symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/299.html\">Nud</a></td>\r\n<td>The null denotation of the tokens generated from this symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/300.html\">Parse</a></td>\r\n<td>The function used to parse literals or identifiers, if applicable.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/301.html\">Scanner</a></td>\r\n<td>The scanner for this type of symbol.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/302.html\">Skip</a></td>\r\n<td>A flag indicating whether symbols of this type should be ignored\r\n            when generating tokens.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/294.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Matched Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Matched Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturns the token for this symbol that matched the given value.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Token&lt;T&gt; Matched (\n        string <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value matched to this symbol.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe token value derived from this symbol.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/295.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Scan Method (string, int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Scan Method (string, int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCheck whether the current symbol matches the input string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int Scan (\n        string <i>input</i>,\n        int <i>pos</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe input string to scan.\r\n</div>\r\n<div class=\"CommentParameterName\">pos</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe position to start scanning.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe index at which the scan completed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/296.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Id Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Id Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe symbol identifier.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public string Id { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/297.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Led Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Led Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe left denotation of the tokens generated from this symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;PrattParser&lt;T&gt;, T, T&gt; Led { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/298.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.LeftBindingPower Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.LeftBindingPower Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe left binding power of the tokens generated from this symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public int LeftBindingPower { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/299.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Nud Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Nud Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe null denotation of the tokens generated from this symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;PrattParser&lt;T&gt;, T&gt; Nud { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/3.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Or Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Or Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Or (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/30.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.ExclusiveOr Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.ExclusiveOr Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T ExclusiveOr (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/300.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Parse Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Parse Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe function used to parse literals or identifiers, if applicable.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Func&lt;string, T&gt; Parse { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/301.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Scanner Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Scanner Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe scanner for this type of symbol.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Scanner Scanner { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/302.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Symbol&lt;T&gt;.Skip Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Symbol&lt;T&gt;.Skip Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA flag indicating whether symbols of this type should be ignored\r\n            when generating tokens.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/252.html\">Symbol&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/249.html\">Sasa.Parsing.Pratt</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool Skip { get; set; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/303.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ParseException Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ParseException Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDescribes a parse error.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/286.html\">ParseException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/248.html\">Sasa.Parsing</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/304.html\">ParseException</a></td>\r\n<td>Constructs a new exception.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/304.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ParseException Constructor (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ParseException Constructor (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstructs a new exception.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/286.html\">ParseException</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/248.html\">Sasa.Parsing</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/10.html\">Sasa.Parsing</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public ParseException (\n        string <i>error</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">error</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe reason for the parse error.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/305.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Serialization Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Serialization Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Shared code for all serializers.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/372.html\">DeepCopying</a></td>\r\n<td>Extension methods to perform deep copies on objects.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/373.html\">DeserializationContext</a></td>\r\n<td>Contains the context for deserialization with a certain client.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/374.html\">SerializationContext</a></td>\r\n<td>Contains the context for serialization with a certain client.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/375.html\">SerializationSlot&lt;TKey, TValue&gt;</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/306.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Serialization.Unsafe Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Serialization.Unsafe Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader5\" onclick=\"javascript: SetSectionVisibility(5, true); SetExpandCollapseAllToCollapseAll();\">Interfaces</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Very efficient, but unsafe serialization.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader5\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg5\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(5);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(5);\">\r\nPublic Interfaces\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv5\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/3/308.html\">IUnsafeSerializable</a></td>\r\n<td>This is an interface used for ultra-compact serialization. Implementors declare a \r\n            single method which specifying all of the fields with their given types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicInterface.gif\" alt=\"Public Interface\" /></td>\r\n<td><a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a></td>\r\n<td>An ultra-compact serializer interface.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/307.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Serialization.Unsafe.Binary Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Serialization.Unsafe.Binary Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Very efficient, but unsafe binary serializaters.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/330.html\">BinaryDeserializer</a></td>\r\n<td>An unsafe binary deserializer.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" /></td>\r\n<td><a href=\"../../Contents/3/331.html\">BinarySerializer</a></td>\r\n<td>An unsafe binary serializer.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/308.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializable Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializable Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis is an interface used for ultra-compact serialization. Implementors declare a \r\n            single method which specifying all of the fields with their given types.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IUnsafeSerializable </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis declarative interface suffices to both serialize and deserialize objects. The\r\n            order of the specified fields is significant, so you cannot re-order the calls in\r\n            Serialize once you have objects that have been serialized.\r\n            \r\n            A simple implementation:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>public Foo : ICompactSerializable {\r\n  int baz;\r\n  string bar;\r\n  \r\n  public Serialize(ICompactSerializer ic) {\r\n    ic.Int32(ref baz);\r\n    ic.String(ref bar);\r\n  }\r\n}\r\n</pre></td></tr></table>\r\n            For instance, if the field 'bar' is deleted, and a field 'sum' is added, the object\r\n            will look like this:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>public Foo : ICompactSerializable {\r\n  int baz;\r\n  int sum;\r\n  \r\n  public Serialize(ICompactSerializer ic) {\r\n    ic.Int32(ref baz);\r\n    string bar = null;\r\n    ic.String(ref bar);\r\n    ic.Int32(ref sum);\r\n  }\r\n}\r\n</pre></td></tr></table>\r\n            After a user-specified period of time, or a full schema upgrade is performed, the\r\n            extra code can be removed.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/310.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/309.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer Interface</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer Interface</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n<a href=\"#SectionHeader2\" onclick=\"javascript: SetSectionVisibility(2, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn ultra-compact serializer interface.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public interface IUnsafeSerializer </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nThis interface describes both serializers and deserializers. These serializers\r\n            perform no safety checks, not even type-safety.\r\n            \r\n            Serializable objects simply describe the structure of the type using this interface.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader2\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg2\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(2);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(2);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv2\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/312.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/31.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.GreaterThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.GreaterThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T GreaterThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/310.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializable Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializable Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThis is an interface used for ultra-compact serialization. Implementors declare a \r\n            single method which specifying all of the fields with their given types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/308.html\">IUnsafeSerializable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/311.html\">Serialize&lt;T&gt;</a></td>\r\n<td>Serialize this object using the given serializer.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/311.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializable.Serialize&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializable.Serialize&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize this object using the given serializer.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/308.html\">IUnsafeSerializable</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Serialize&lt;T&gt; (\n        T <i>serializer</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: IUnsafeSerializer</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">serializer</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe serializer used to describe the internal structure\r\n            of the current object.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/312.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer Interface Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer Interface Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn ultra-compact serializer interface.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/313.html\">Bool</a></td>\r\n<td>Serialize/deserialize a bool.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/314.html\">Byte</a></td>\r\n<td>Serialize/deserialize a Byte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/315.html\">Bytes</a></td>\r\n<td>Serialize/deserialize an Byte[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/316.html\">Char</a></td>\r\n<td>Serialize/deserialize a char.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/317.html\">Chars</a></td>\r\n<td>Serialize/deserialize an Char[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/318.html\">Decimal</a></td>\r\n<td>Serialize/deserialize an Decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/319.html\">Double</a></td>\r\n<td>Serialize/deserialize an Double.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/320.html\">Float</a></td>\r\n<td>Serialize/deserialize an Float.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/321.html\">Int16</a></td>\r\n<td>Serialize/deserialize an Int16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/322.html\">Int32</a></td>\r\n<td>Serialize/deserialize an Int32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/323.html\">Int64</a></td>\r\n<td>Serialize/deserialize an Int64.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/324.html\">SByte</a></td>\r\n<td>Serialize/deserialize an SByte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/325.html\">Serialize&lt;T&gt;</a></td>\r\n<td>Serialize/deserialize an IUnsafeSerializable object.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/326.html\">String</a></td>\r\n<td>Serialize/deserialize a String.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/327.html\">UInt16</a></td>\r\n<td>Serialize/deserialize a UInt16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/328.html\">UInt32</a></td>\r\n<td>Serialize/deserialize a UInt32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/329.html\">UInt64</a></td>\r\n<td>Serialize/deserialize a UInt64.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/313.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Bool Method (ref bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Bool Method (ref bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a bool.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Bool (\n        ref bool <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the bool field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/314.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Byte Method (ref byte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Byte Method (ref byte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a Byte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Byte (\n        ref byte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/315.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Bytes Method (ref byte[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Bytes Method (ref byte[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Byte[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Bytes (\n        ref byte[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/316.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Char Method (ref char)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Char Method (ref char)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a char.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Char (\n        ref char <i>c</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">c</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the char field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/317.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Chars Method (ref char[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Chars Method (ref char[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Char[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Chars (\n        ref char[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Char[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/318.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Decimal Method (ref decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Decimal Method (ref decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Decimal (\n        ref decimal <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Decimal field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/319.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Double Method (ref double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Double Method (ref double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Double.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Double (\n        ref double <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Double field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/32.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.GreaterThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.GreaterThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T GreaterThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/320.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Float Method (ref float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Float Method (ref float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Float.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Float (\n        ref float <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Float field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/321.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Int16 Method (ref short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Int16 Method (ref short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int16 (\n        ref short <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/322.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Int32 Method (ref int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Int32 Method (ref int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int32 (\n        ref int <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/323.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Int64 Method (ref long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Int64 Method (ref long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Int64 (\n        ref long <i>l</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">l</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/324.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.SByte Method (ref sbyte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.SByte Method (ref sbyte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an SByte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void SByte (\n        ref sbyte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the SByte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/325.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.Serialize&lt;T&gt; Method (ref T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.Serialize&lt;T&gt; Method (ref T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an IUnsafeSerializable object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void Serialize&lt;T&gt; (\n        ref T <i>obj</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: IUnsafeSerializable</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the IUnsafeSerializable object field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/326.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.String Method (ref string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.String Method (ref string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a String.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void String (\n        ref string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the String field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/327.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.UInt16 Method (ref ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.UInt16 Method (ref ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt16 (\n        ref ushort <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/328.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.UInt32 Method (ref uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.UInt32 Method (ref uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt32 (\n        ref uint <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/329.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IUnsafeSerializer.UInt64 Method (ref ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IUnsafeSerializer.UInt64 Method (ref ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/309.html\">IUnsafeSerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/306.html\">Sasa.Serialization.Unsafe</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract void UInt64 (\n        ref ulong <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/33.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Invoke Method (InvocationExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Invoke Method (InvocationExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Invoke (\n        InvocationExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/330.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn unsafe binary deserializer.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class BinaryDeserializer :&nbsp;</td>\n<td>\nIUnsafeSerializer,<br />\nIDisposable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/352.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/331.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn unsafe binary serializer.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public class BinarySerializer :&nbsp;</td>\n<td>\nIUnsafeSerializer,<br />\nIDisposable\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/332.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/332.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn unsafe binary serializer.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/333.html\">BinarySerializer</a></td>\r\n<td>Construct a BinarySerializer instance.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/334.html\">Bool</a></td>\r\n<td>Serialize/deserialize a bool.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/335.html\">Byte</a></td>\r\n<td>Serialize/deserialize a Byte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/336.html\">Bytes</a></td>\r\n<td>Serialize/deserialize an Byte[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/337.html\">Char</a></td>\r\n<td>Serialize/deserialize a char.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/338.html\">Chars</a></td>\r\n<td>Serialize/deserialize an Char[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/339.html\">Decimal</a></td>\r\n<td>Serialize/deserialize an Decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/340.html\">Dispose</a></td>\r\n<td>Dispose of this instance's resources.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/341.html\">Double</a></td>\r\n<td>Serialize/deserialize an Double.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/342.html\">Float</a></td>\r\n<td>Serialize/deserialize an Float.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/343.html\">Int16</a></td>\r\n<td>Serialize/deserialize an Int16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/344.html\">Int32</a></td>\r\n<td>Serialize/deserialize an Int32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/345.html\">Int64</a></td>\r\n<td>Serialize/deserialize an Int64.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/346.html\">SByte</a></td>\r\n<td>Serialize/deserialize an SByte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/347.html\">Serialize&lt;T&gt;</a></td>\r\n<td>Serialize/deserialize an IUnsafeSerializable object.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/348.html\">String</a></td>\r\n<td>Serialize/deserialize a String.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/349.html\">UInt16</a></td>\r\n<td>Serialize/deserialize a UInt16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/350.html\">UInt32</a></td>\r\n<td>Serialize/deserialize a UInt32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/351.html\">UInt64</a></td>\r\n<td>Serialize/deserialize a UInt64.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/333.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer Constructor (BinaryWriter)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer Constructor (BinaryWriter)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a BinarySerializer instance.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public BinarySerializer (\n        BinaryWriter <i>output</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">output</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe BinaryWriter to use for output.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/334.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Bool Method (ref bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Bool Method (ref bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a bool.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bool (\n        ref bool <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the bool field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/335.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Byte Method (ref byte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Byte Method (ref byte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a Byte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Byte (\n        ref byte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/336.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Bytes Method (ref byte[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Bytes Method (ref byte[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Byte[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bytes (\n        ref byte[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/337.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Char Method (ref char)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Char Method (ref char)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a char.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Char (\n        ref char <i>c</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">c</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the char field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/338.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Chars Method (ref char[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Chars Method (ref char[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Char[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Chars (\n        ref char[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Char[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/339.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Decimal Method (ref decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Decimal Method (ref decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Decimal (\n        ref decimal <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Decimal field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/34.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Lambda Method (LambdaExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Lambda Method (LambdaExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Lambda (\n        LambdaExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/340.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Dispose Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Dispose Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDispose of this instance's resources.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Dispose ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/341.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Double Method (ref double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Double Method (ref double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Double.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Double (\n        ref double <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Double field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/342.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Float Method (ref float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Float Method (ref float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Float.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Float (\n        ref float <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Float field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/343.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Int16 Method (ref short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Int16 Method (ref short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int16 (\n        ref short <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/344.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Int32 Method (ref int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Int32 Method (ref int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int32 (\n        ref int <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/345.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Int64 Method (ref long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Int64 Method (ref long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int64 (\n        ref long <i>l</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">l</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/346.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.SByte Method (ref sbyte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.SByte Method (ref sbyte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an SByte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void SByte (\n        ref sbyte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the SByte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/347.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.Serialize&lt;T&gt; Method (ref T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.Serialize&lt;T&gt; Method (ref T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an IUnsafeSerializable object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Serialize&lt;T&gt; (\n        ref T <i>obj</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: IUnsafeSerializable</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the IUnsafeSerializable object field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/348.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.String Method (ref string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.String Method (ref string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a String.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void String (\n        ref string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the String field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/349.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.UInt16 Method (ref ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.UInt16 Method (ref ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt16 (\n        ref ushort <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/35.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.LeftShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.LeftShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T LeftShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/350.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.UInt32 Method (ref uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.UInt32 Method (ref uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt32 (\n        ref uint <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/351.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinarySerializer.UInt64 Method (ref ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinarySerializer.UInt64 Method (ref ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/331.html\">BinarySerializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt64 (\n        ref ulong <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/352.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAn unsafe binary deserializer.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/353.html\">BinaryDeserializer</a></td>\r\n<td>Construct a BinaryDeserializer instance.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/354.html\">Bool</a></td>\r\n<td>Serialize/deserialize a bool.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/355.html\">Byte</a></td>\r\n<td>Serialize/deserialize a Byte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/356.html\">Bytes</a></td>\r\n<td>Serialize/deserialize an Byte[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/357.html\">Char</a></td>\r\n<td>Serialize/deserialize a char.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/358.html\">Chars</a></td>\r\n<td>Serialize/deserialize an Char[].</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/359.html\">Decimal</a></td>\r\n<td>Serialize/deserialize an Decimal.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/360.html\">Dispose</a></td>\r\n<td>Dispose of this instance's resources.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/361.html\">Double</a></td>\r\n<td>Serialize/deserialize an Double.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/362.html\">Float</a></td>\r\n<td>Serialize/deserialize an Float.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/363.html\">Int16</a></td>\r\n<td>Serialize/deserialize an Int16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/364.html\">Int32</a></td>\r\n<td>Serialize/deserialize an Int32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/365.html\">Int64</a></td>\r\n<td>Serialize/deserialize an Int64.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/366.html\">SByte</a></td>\r\n<td>Serialize/deserialize an SByte.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/367.html\">Serialize&lt;T&gt;</a></td>\r\n<td>Serialize/deserialize an IUnsafeSerializable object.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/368.html\">String</a></td>\r\n<td>Serialize/deserialize a String.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/369.html\">UInt16</a></td>\r\n<td>Serialize/deserialize a UInt16.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/370.html\">UInt32</a></td>\r\n<td>Serialize/deserialize a UInt32.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/371.html\">UInt64</a></td>\r\n<td>Serialize/deserialize a UInt64.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/353.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer Constructor (BinaryReader)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer Constructor (BinaryReader)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a BinaryDeserializer instance.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public BinaryDeserializer (\n        BinaryReader <i>input</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">input</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA BinaryReader instance.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/354.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Bool Method (ref bool)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Bool Method (ref bool)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a bool.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bool (\n        ref bool <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the bool field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/355.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Byte Method (ref byte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Byte Method (ref byte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a Byte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Byte (\n        ref byte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/356.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Bytes Method (ref byte[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Bytes Method (ref byte[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Byte[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Bytes (\n        ref byte[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Byte[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/357.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Char Method (ref char)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Char Method (ref char)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a char.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Char (\n        ref char <i>c</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">c</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the char field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/358.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Chars Method (ref char[])</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Chars Method (ref char[])</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Char[].\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Chars (\n        ref char[] <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Char[] field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/359.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Decimal Method (ref decimal)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Decimal Method (ref decimal)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Decimal.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Decimal (\n        ref decimal <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Decimal field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/36.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.LessThan Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.LessThan Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T LessThan (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/360.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Dispose Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Dispose Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nDispose of this instance's resources.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Dispose ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/361.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Double Method (ref double)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Double Method (ref double)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Double.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Double (\n        ref double <i>d</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">d</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Double field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/362.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Float Method (ref float)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Float Method (ref float)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Float.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Float (\n        ref float <i>f</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">f</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Float field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/363.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Int16 Method (ref short)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Int16 Method (ref short)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int16 (\n        ref short <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/364.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Int32 Method (ref int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Int32 Method (ref int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int32 (\n        ref int <i>i</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">i</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/365.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Int64 Method (ref long)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Int64 Method (ref long)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an Int64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Int64 (\n        ref long <i>l</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">l</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the Int64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/366.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.SByte Method (ref sbyte)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.SByte Method (ref sbyte)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an SByte.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void SByte (\n        ref sbyte <i>b</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">b</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the SByte field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/367.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.Serialize&lt;T&gt; Method (ref T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.Serialize&lt;T&gt; Method (ref T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize an IUnsafeSerializable object.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Serialize&lt;T&gt; (\n        ref T <i>obj</i>\n) </pre>\n<div style=\"padding-left: 30px; margin-top: 0px;\">\n<table class=\"InsideCodeBlock\">\n<col />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">where T</td>\n<td>&nbsp;: IUnsafeSerializable</td>\n</td>\n</tr>\n</table>\n</div>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the IUnsafeSerializable object field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/368.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.String Method (ref string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.String Method (ref string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a String.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void String (\n        ref string <i>s</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">s</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the String field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/369.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.UInt16 Method (ref ushort)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.UInt16 Method (ref ushort)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt16.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt16 (\n        ref ushort <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt16 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/37.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.LessThanOrEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.LessThanOrEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T LessThanOrEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/370.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.UInt32 Method (ref uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.UInt32 Method (ref uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt32.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt32 (\n        ref uint <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt32 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/371.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>BinaryDeserializer.UInt64 Method (ref ulong)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">BinaryDeserializer.UInt64 Method (ref ulong)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSerialize/deserialize a UInt64.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/330.html\">BinaryDeserializer</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/307.html\">Sasa.Serialization.Unsafe.Binary</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void UInt64 (\n        ref ulong <i>u</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">u</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA pointer to the UInt64 field.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/372.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeepCopying Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeepCopying Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to perform deep copies on objects.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class DeepCopying </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/394.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/373.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContains the context for deserialization with a certain client.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class DeserializationContext </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/377.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/374.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContains the context for serialization with a certain client.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class SerializationContext </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/385.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/375.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationSlot&lt;TKey, TValue&gt; Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationSlot&lt;TKey, TValue&gt; Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public sealed class SerializationSlot&lt;TKey, TValue&gt; :&nbsp;</td>\n<td>\nValueType<br />\n</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">TKey</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">TValue</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>There are no members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/376.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationSlot&lt;TKey, TValue&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationSlot&lt;TKey, TValue&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/375.html\">SerializationSlot&lt;TKey, TValue&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/377.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContains the context for deserialization with a certain client.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/378.html\">DeserializationContext</a></td>\r\n<td>Overloaded. </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/379.html\">Cache</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/380.html\">Cached</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/381.html\">CacheSlot</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/382.html\">Set</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/378.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/383.html\">DeserializationContext ()</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/384.html\">DeserializationContext (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/379.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext.Cache Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext.Cache Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Cache (\n        object <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/38.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.ListInit Method (ListInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.ListInit Method (ListInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T ListInit (\n        ListInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/380.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext.Cached Method (uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext.Cached Method (uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public object Cached (\n        uint <i>key</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/381.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext.CacheSlot Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext.CacheSlot Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public SerializationSlot&lt;uint, object&gt; CacheSlot ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/382.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext.Set Method (SerializationSlot&lt;uint, object&gt;, object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext.Set Method (SerializationSlot&lt;uint, object&gt;, object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Set (\n        SerializationSlot&lt;uint, object&gt; <i>slot</i>,\n        object <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/383.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public DeserializationContext ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/384.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeserializationContext Constructor (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeserializationContext Constructor (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/373.html\">DeserializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public DeserializationContext (\n        IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt; <i>initialCache</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">initialCache</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/385.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nContains the context for serialization with a certain client.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/386.html\">SerializationContext</a></td>\r\n<td>Overloaded. </td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/387.html\">Cache</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/388.html\">CacheSlot</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/389.html\">IsCached</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/390.html\">IsValid</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/391.html\">Set</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/386.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext Constructor</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext Constructor</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/392.html\">SerializationContext ()</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/393.html\">SerializationContext (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/387.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext.Cache Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext.Cache Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public uint Cache (\n        object <i>obj</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">obj</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/388.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext.CacheSlot Method (object)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext.CacheSlot Method (object)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public SerializationSlot&lt;object, uint&gt; CacheSlot (\n        object <i>key</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/389.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext.IsCached Method (object, out uint)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext.IsCached Method (object, out uint)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsCached (\n        object <i>key</i>,\n        out uint <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">key</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/39.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.MemberAccess Method (MemberExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.MemberAccess Method (MemberExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T MemberAccess (\n        MemberExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/390.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext.IsValid Method (SerializationSlot&lt;object, uint&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext.IsValid Method (SerializationSlot&lt;object, uint&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public bool IsValid (\n        SerializationSlot&lt;object, uint&gt; <i>slot</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/391.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext.Set Method (SerializationSlot&lt;object, uint&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext.Set Method (SerializationSlot&lt;object, uint&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public void Set (\n        SerializationSlot&lt;object, uint&gt; <i>slot</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">slot</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/392.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public SerializationContext ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/393.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>SerializationContext Constructor (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">SerializationContext Constructor (IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/374.html\">SerializationContext</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public SerializationContext (\n        IEnumerable&lt;KeyValuePair&lt;uint, object&gt;&gt; <i>initialCache</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">initialCache</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/394.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeepCopying Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeepCopying Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExtension methods to perform deep copies on objects.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/372.html\">DeepCopying</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/395.html\">DeepCopy&lt;T&gt;</a></td>\r\n<td>Performs a deep copy.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/395.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>DeepCopying.DeepCopy&lt;T&gt; Method (T)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">DeepCopying.DeepCopy&lt;T&gt; Method (T)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nPerforms a deep copy.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/372.html\">DeepCopying</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/305.html\">Sasa.Serialization</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/11.html\">Sasa.Serialization</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static T DeepCopy&lt;T&gt; (\n        T <i>value</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of object being copied.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value being copied.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA deep copy of the given value.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/396.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Statistics.Linq Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Statistics.Linq Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Statistical functions over enumerable sequences.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/397.html\">Statistics</a></td>\r\n<td>Some useful statistical functions for manipulating data sets.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/397.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSome useful statistical functions for manipulating data sets.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Statistics </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/398.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/398.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nSome useful statistical functions for manipulating data sets.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/399.html\">PeircesCriterion</a></td>\r\n<td>Overloaded. Filter out outliers according to Peirce's Criterion.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/400.html\">StandardDeviation</a></td>\r\n<td>Calculate the standard deviation of the input values.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/399.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics.PeircesCriterion Method</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics.PeircesCriterion Method</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Overload List</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFilter out outliers according to Peirce's Criterion.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nOverload List\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/401.html\">Statistics.PeircesCriterion (IEnumerable&lt;double&gt;, out int)</a></td>\r\n<td>Filter out outliers according to Peirce's Criterion.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/402.html\">Statistics.PeircesCriterion (IEnumerable&lt;double&gt;, out IEnumerable&lt;int&gt;, out int)</a></td>\r\n<td>Filter out outliers according to Peirce's Criterion.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/403.html\">Statistics.PeircesCriterion (IEnumerable&lt;double&gt;)</a></td>\r\n<td>Filter out outliers according to Peirce's Criterion.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/4.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.OrElse Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.OrElse Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression OrElse (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/40.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.MemberInit Method (MemberInitExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.MemberInit Method (MemberInitExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T MemberInit (\n        MemberInitExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/400.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics.StandardDeviation Method (IEnumerable&lt;double&gt;, out double, out int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics.StandardDeviation Method (IEnumerable&lt;double&gt;, out double, out int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCalculate the standard deviation of the input values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static double StandardDeviation (\n        IEnumerable&lt;double&gt; <i>source</i>,\n        out double <i>mean</i>,\n        out int <i>count</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA sequence of input values.\r\n</div>\r\n<div class=\"CommentParameterName\">mean</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe mean of the input values.\r\n</div>\r\n<div class=\"CommentParameterName\">count</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of input values.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nStandard deviation.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/401.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;, out int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;, out int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFilter out outliers according to Peirce's Criterion.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;double&gt; PeircesCriterion (\n        IEnumerable&lt;double&gt; <i>source</i>,\n        out int <i>eliminated</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source data set.\r\n</div>\r\n<div class=\"CommentParameterName\">eliminated</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of outliers eliminated.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA result set minus any outliers.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nPeirce's table consists of R values, where:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>R = |x(i) - mean| / standard deviation</pre></td></tr></table>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/402.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;, out IEnumerable&lt;int&gt;, out int)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;, out IEnumerable&lt;int&gt;, out int)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFilter out outliers according to Peirce's Criterion.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;double&gt; PeircesCriterion (\n        IEnumerable&lt;double&gt; <i>source</i>,\n        out IEnumerable&lt;int&gt; <i>outliers</i>,\n        out int <i>eliminated</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source data set.\r\n</div>\r\n<div class=\"CommentParameterName\">outliers</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe indexes of the outliers in the data set.\r\n</div>\r\n<div class=\"CommentParameterName\">eliminated</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe number of outliers eliminated.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA result set minus any outliers.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nPeirce's table consists of R values, where:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>R = |x(i) - mean| / standard deviation</pre></td></tr></table>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/403.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Statistics.PeircesCriterion Method (IEnumerable&lt;double&gt;)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Remarks</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFilter out outliers according to Peirce's Criterion.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/397.html\">Statistics</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/396.html\">Sasa.Statistics.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/12.html\">Sasa.Statistics</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static IEnumerable&lt;double&gt; PeircesCriterion (\n        IEnumerable&lt;double&gt; <i>source</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">source</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe source data set.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA result set minus any outliers.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nRemarks\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<div class=\"RemarksContainer\">\r\nPeirce's table consists of R values, where:\r\n            <table class=\"ExampleCodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre>R = |x(i) - mean| / standard deviation</pre></td></tr></table>\r\n            The algorithm and test vector was derived from:\r\n            http://mtp.jpl.nasa.gov/missions/start-08/science/piercescriterion.pdf\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/41.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Modulo Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Modulo Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Modulo (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/42.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Multiply Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Multiply Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Multiply (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/43.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.MultiplyChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.MultiplyChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T MultiplyChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/44.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Negate Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Negate Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Negate (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/45.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.NegateChecked Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.NegateChecked Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T NegateChecked (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/46.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.New Method (NewExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.New Method (NewExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T New (\n        NewExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/47.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.NewArrayBounds Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.NewArrayBounds Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T NewArrayBounds (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/48.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.NewArrayInit Method (NewArrayExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.NewArrayInit Method (NewArrayExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T NewArrayInit (\n        NewArrayExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/49.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Not Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Not Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Not (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/5.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Parameter Method (ParameterExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Parameter Method (ParameterExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Parameter (\n        ParameterExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/50.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.NotEqual Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.NotEqual Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T NotEqual (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/51.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Or Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Or Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Or (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/52.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.OrElse Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.OrElse Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T OrElse (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/53.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Parameter Method (ParameterExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Parameter Method (ParameterExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Parameter (\n        ParameterExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/54.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Power Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Power Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Power (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/55.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Quote Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Quote Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Quote (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/56.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.RightShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.RightShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T RightShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/57.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.Subtract Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.Subtract Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T Subtract (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/58.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.SubtractChecked Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.SubtractChecked Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T SubtractChecked (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/59.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.TypeAs Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.TypeAs Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T TypeAs (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/6.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Power Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Power Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Power (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/60.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.TypeIs Method (TypeBinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.TypeIs Method (TypeBinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T TypeIs (\n        TypeBinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/61.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>ErrorVisitor&lt;T&gt;.UnaryPlus Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">ErrorVisitor&lt;T&gt;.UnaryPlus Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/412.html\">ErrorVisitor&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override T UnaryPlus (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/62.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt; Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt; Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader30\" onclick=\"javascript: SetSectionVisibility(30, true); SetExpandCollapseAllToCollapseAll();\">Constructors</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n<a href=\"#SectionHeader40\" onclick=\"javascript: SetSectionVisibility(40, true); SetExpandCollapseAllToCollapseAll();\">Properties</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA default Queryable implementation.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader30\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg30\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(30);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(30);\">\r\nPublic Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv30\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/63.html\">Queryable</a></td>\r\n<td>Construct a queryable object with the given provider and expression.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/64.html\">GetEnumerator</a></td>\r\n<td>Execute the query and enumerate over the return values.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader40\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg40\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(40);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(40);\">\r\nPublic Properties\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv40\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/65.html\">ElementType</a></td>\r\n<td>The return type of the query expression.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/66.html\">Expression</a></td>\r\n<td>The query expression.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicProperty.gif\" alt=\"Public Property\" /></td>\r\n<td><a href=\"../../Contents/3/67.html\">Provider</a></td>\r\n<td>The query provider.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/63.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt; Constructor (QueryProvider, Expression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt; Constructor (QueryProvider, Expression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nConstruct a queryable object with the given provider and expression.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Queryable (\n        QueryProvider <i>provider</i>,\n        Expression <i>expression</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">provider</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe query provider.\r\n</div>\r\n<div class=\"CommentParameterName\">expression</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe query expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/64.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt;.GetEnumerator Method ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt;.GetEnumerator Method ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the query and enumerate over the return values.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IEnumerator&lt;T&gt; GetEnumerator ()</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nAn enumeration over the return values of the query.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/65.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt;.ElementType Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt;.ElementType Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe return type of the query expression.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Type ElementType { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/66.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt;.Expression Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt;.Expression Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe query expression.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public Expression Expression { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/67.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Queryable&lt;T&gt;.Provider Property </title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Queryable&lt;T&gt;.Provider Property </div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nThe query provider.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/415.html\">Queryable&lt;T&gt;</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IQueryProvider Provider { get; }</pre></td></tr></table>\r\n<div class=\"CommentHeader\">Property Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/68.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA base query provider which implements much of the common functionality.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/416.html\">QueryProvider</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader32\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg32\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(32);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(32);\">\r\nProtected Constructors\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv32\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/ProtectedMethod.gif\" alt=\"Protected Method\" /></td>\r\n<td><a href=\"../../Contents/3/69.html\">QueryProvider</a></td>\r\n<td><p>There is no summary.</p></td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" /></td>\r\n<td><a href=\"../../Contents/3/70.html\">CreateQuery&lt;T&gt;</a></td>\r\n<td>Create a typed IQueryable for this provider.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/71.html\">Execute&lt;T&gt;</a></td>\r\n<td>Execute the expression and return the given object type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Abstract.gif\" alt=\"Abstract\" /></td>\r\n<td><a href=\"../../Contents/3/72.html\">ToString</a></td>\r\n<td>Return the expression as a string.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/69.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider Constructor ()</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider Constructor ()</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/416.html\">QueryProvider</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">protected QueryProvider ()</pre></td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/7.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Quote Method (UnaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Quote Method (UnaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Quote (\n        UnaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/70.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider.CreateQuery&lt;T&gt; Method (Expression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider.CreateQuery&lt;T&gt; Method (Expression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nCreate a typed IQueryable for this provider.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/416.html\">QueryProvider</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public IQueryable&lt;T&gt; CreateQuery&lt;T&gt; (\n        Expression <i>expression</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">expression</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to execute used to construct the query.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA query returning a value of type T.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/71.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider.Execute&lt;T&gt; Method (Expression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider.Execute&lt;T&gt; Method (Expression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nExecute the expression and return the given object type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/416.html\">QueryProvider</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract T Execute&lt;T&gt; (\n        Expression <i>expression</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Type Parameters</div>\r\n<div class=\"CommentParameterName\">T</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe type of the return value.\r\n</div>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">expression</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to execute.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe value returned from executing the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/72.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>QueryProvider.ToString Method (Expression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">QueryProvider.ToString Method (Expression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the expression as a string.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/416.html\">QueryProvider</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public abstract string ToString (\n        Expression <i>expression</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">expression</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe expression to convert.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nA string representation of the expression.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/73.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>Sasa.Mime Namespace</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">Sasa.Mime Namespace</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n\r\n        Mime types and file extensions, and functions to map between them.\r\n      \r\n<div id=\"ItemLocation\">\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/74.html\">FileExtensions</a></td>\r\n<td>A list of standard file extensions</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/75.html\">FileExtensions.Application</a></td>\r\n<td>Application-specific media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/76.html\">FileExtensions.Image</a></td>\r\n<td>Media types for images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/77.html\">FileExtensions.Message</a></td>\r\n<td>Message media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/78.html\">FileExtensions.Multipart</a></td>\r\n<td>Multipart media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/79.html\">FileExtensions.Text</a></td>\r\n<td>Media types for text.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/80.html\">MediaTypes</a></td>\r\n<td>Additional media types not ommitted for System.Net.Mime.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/81.html\">MediaTypes.Application</a></td>\r\n<td>Application-specific media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/82.html\">MediaTypes.Image</a></td>\r\n<td>Media types for images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/83.html\">MediaTypes.Message</a></td>\r\n<td>Message media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/84.html\">MediaTypes.Multipart</a></td>\r\n<td>Multipart media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/85.html\">MediaTypes.Text</a></td>\r\n<td>Media types for text.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/74.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA list of standard file extensions\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class FileExtensions </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/86.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/75.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApplication-specific media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Application </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/88.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/76.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Image </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/97.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/77.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Message Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Message Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMessage media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Message </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/115.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/78.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Multipart Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Multipart Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMultipart media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Multipart </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/111.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/79.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Text Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Text Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Text </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/105.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/8.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.RightShift Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.RightShift Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression RightShift (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/80.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nAdditional media types not ommitted for System.Net.Mime.\r\n<div id=\"ItemLocation\">\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class MediaTypes </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/117.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/81.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Application Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Application Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApplication-specific media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Application </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/121.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/82.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Image Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Image Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Image </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/131.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/83.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Message Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Message Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMessage media type.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Message </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/148.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/84.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Multipart Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Multipart Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMultipart media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Multipart </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/144.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/85.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>MediaTypes.Text Class</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">MediaTypes.Text Class</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n<a href=\"#SectionHeader1\" onclick=\"javascript: SetSectionVisibility(1, true); SetExpandCollapseAllToCollapseAll();\">Members</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for text.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/80.html\">MediaTypes</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><table style=\"width: 100%;\" class=\"InsideCodeBlock\">\n<col width=\"0%\" />\n<col width=\"100%\" />\n<tr>\n<td class=\"NoWrapTop\">public static class Text </td>\n<td>&nbsp;</td>\n</tr>\n</table>\n</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader1\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg1\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(1);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(1);\">\r\nMembers\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv1\" class=\"SectionContainer\">\r\n<p>Click <a href=\"../../Contents/3/138.html\">here</a> to see the list of members.</p>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/86.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Classes</a>&nbsp;\r\n<a href=\"#SectionHeader35\" onclick=\"javascript: SetSectionVisibility(35, true); SetExpandCollapseAllToCollapseAll();\">Methods</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nA list of standard file extensions\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nPublic Classes\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/75.html\">Application</a></td>\r\n<td>Application-specific media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/76.html\">Image</a></td>\r\n<td>Media types for images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/77.html\">Message</a></td>\r\n<td>Message media type.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/78.html\">Multipart</a></td>\r\n<td>Multipart media types.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicClass.gif\" alt=\"Public Class\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/79.html\">Text</a></td>\r\n<td>Media types for text.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n<div id=\"SectionHeader35\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg35\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(35);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(35);\">\r\nPublic Methods\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv35\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicMethod.gif\" alt=\"Public Method\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/87.html\">MediaType</a></td>\r\n<td>Return the Mime-Type given the file extension.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/87.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.MediaType Method (string)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.MediaType Method (string)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nReturn the Mime-Type given the file extension.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/74.html\">FileExtensions</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public static string MediaType (\n        string <i>file</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">file</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe file path, file name or file extension.\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\nThe media type of the given file extension.\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/88.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nApplication-specific media types.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/89.html\">MicrosoftExcel</a></td>\r\n<td>File extension for Microsoft Excel documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/90.html\">MicrosoftPowerpoint</a></td>\r\n<td>File extension for Microsoft Powerpoint documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/91.html\">MicrosoftWord</a></td>\r\n<td>File extension for Microsoft Word documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/92.html\">Pdf</a></td>\r\n<td>File extension for PDF.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/93.html\">Postscript</a></td>\r\n<td>File extension for Postscript documents.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/94.html\">Rtf</a></td>\r\n<td>File extension for RTF.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/95.html\">Soap</a></td>\r\n<td>File extension for SOAP messages.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/96.html\">Zip</a></td>\r\n<td>File extension for ZIP files.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/89.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.MicrosoftExcel Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.MicrosoftExcel Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for Microsoft Excel documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftExcel = \".xls\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/9.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>IdentityVisitor.Subtract Method (BinaryExpression)</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">IdentityVisitor.Subtract Method (BinaryExpression)</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\n<p>There is no summary.</p>\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/2/414.html\">IdentityVisitor</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/2/411.html\">Sasa.Linq</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/6.html\">Sasa.Linq</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\"><pre style=\"margin-left: 2px;\">public override Expression Subtract (\n        BinaryExpression <i>e</i>\n) </pre></td></tr></table>\r\n<div class=\"CommentHeader\">Parameters</div>\r\n<div class=\"CommentParameterName\">e</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"CommentHeader\">Return Value</div>\r\n<div class=\"ParameterCommentContainer\">\r\n<p>There is no description.</p>\r\n</div>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/90.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.MicrosoftPowerpoint Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.MicrosoftPowerpoint Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for Microsoft Powerpoint documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftPowerpoint = \".ppt\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/91.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.MicrosoftWord Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.MicrosoftWord Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for Microsoft Word documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string MicrosoftWord = \".doc\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/92.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.Pdf Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.Pdf Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for PDF.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Pdf = \".pdf\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/93.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.Postscript Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.Postscript Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for Postscript documents.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Postscript = \".ps\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/94.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.Rtf Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.Rtf Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for RTF.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Rtf = \".rtf\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/95.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.Soap Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.Soap Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for SOAP messages.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Soap = \".xml\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/96.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Application.Zip Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Application.Zip Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for ZIP files.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/75.html\">FileExtensions.Application</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Zip = \".zip\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/97.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image Class Members</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image Class Members</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader25\" onclick=\"javascript: SetSectionVisibility(25, true); SetExpandCollapseAllToCollapseAll();\">Fields</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nMedia types for images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader25\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg25\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(25);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(25);\">\r\nPublic Fields\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv25\" class=\"SectionContainer\">\r\n<table class=\"MembersTable\">\r\n<col width=\"7%\" />\r\n<col width=\"38%\" />\r\n<col width=\"55%\" />\r\n<tr>\r\n<th>&nbsp;</th>\r\n<th>Name</th>\r\n<th>Description</th>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/98.html\">Bmp</a></td>\r\n<td>File extension for BMP images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/99.html\">Dwg</a></td>\r\n<td>File extension for DWG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/100.html\">Gif</a></td>\r\n<td>File extension for GIF images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/101.html\">Jpeg</a></td>\r\n<td>File extension for JPEG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/102.html\">JpegShort</a></td>\r\n<td>File extension for JPEG images (short version).</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/103.html\">Png</a></td>\r\n<td>File extension for PNG images.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"IconColumn\">\r\n<img src=\"../../GFX/PublicField.gif\" alt=\"Public Field\" />&nbsp;<img src=\"../../GFX/Static.gif\" alt=\"Static\" /></td>\r\n<td><a href=\"../../Contents/3/104.html\">Tiff</a></td>\r\n<td>File extension for TIFF images.</td>\r\n</tr>\r\n</table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/98.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Bmp Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Bmp Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for BMP images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Bmp = \".bmp\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/Contents/3/99.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!-- This comment will force IE7 to go into quirks mode. -->\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></meta>\r\n<link rel=\"stylesheet\" type=\"text/css\" href=\"../../CSS/Contents.css\"></link>\r\n<script type=\"text/javascript\" src=\"../../JS/Common.js\"></script>\r\n<title>FileExtensions.Image.Dwg Field</title>\r\n</head>\r\n<body>\r\n<div id=\"Header\">\r\n<div id=\"ProjectTitle\">Documentation Project</div>\r\n<div id=\"PageTitle\">FileExtensions.Image.Dwg Field</div>\r\n<div id=\"HeaderShortcuts\">\r\n<a href=\"#SectionHeader0\" onclick=\"javascript: SetSectionVisibility(0, true); SetExpandCollapseAllToCollapseAll();\">Syntax</a>&nbsp;\r\n</div>\r\n<div class=\"DarkLine\"></div>\r\n<div class=\"LightLine\"></div>\r\n<div id=\"HeaderToolbar\">\r\n<img id=\"ExpandCollapseAllImg\" src=\"../../GFX/SmallSquareExpanded.gif\" alt=\"\" style=\"vertical-align: top;\" onclick=\"javascript: ToggleAllSectionsVisibility();\" />\r\n<span id=\"ExpandCollapseAllSpan\" onclick=\"javascript: ToggleAllSectionsVisibility();\">Collapse All</span>\r\n</div>\r\n</div>\r\n<div id=\"Contents\">\r\n<a id=\"ContentsAnchor\">&nbsp;</a>\r\nFile extension for DWG images.\r\n<div id=\"ItemLocation\">\r\n<b>Declaring type:</b> <a href=\"../../Contents/3/76.html\">FileExtensions.Image</a><br />\r\n<b>Namespace:</b> <a href=\"../../Contents/3/73.html\">Sasa.Mime</a><br />\r\n<b>Assembly:</b> <a href=\"../../Contents/1/7.html\">Sasa.Mime</a>\r\n</div>\r\n<div id=\"SectionHeader0\" class=\"SectionHeader\">\r\n<img id=\"SectionExpanderImg0\" src=\"../../GFX/BigSquareExpanded.gif\" alt=\"Collapse/Expand\" onclick=\"javascript: ToggleSectionVisibility(0);\" />\r\n<span class=\"SectionHeader\">\r\n<span class=\"ArrowCursor\" onclick=\"javascript: ToggleSectionVisibility(0);\">\r\nSyntax\r\n</span>\r\n</span>\r\n</div>\r\n\r\n<div id=\"SectionContainerDiv0\" class=\"SectionContainer\">\r\n<table class=\"CodeTable\"><col width=\"100%\" /><tr class=\"CodeTable\"><th class=\"CodeTable\">C#</th></tr><tr class=\"CodeTable\"><td class=\"CodeTable\">public const string Dwg = \".dwg\"</td></tr></table>\r\n<div class=\"TopLink\"><a href=\"#ContentsAnchor\">Top</a></div></div>\r\n</div>\r\n<div id=\"Footer\">\r\n<span class=\"Footer\">Generated by <a href=\"http://immdocnet.codeplex.com/\" target=\"_blank\">ImmDoc .NET</a></span>.\r\n</div>\r\n\r\n</body>\r\n\r\n</html>\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/JS/Common.js",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\nvar MAX_SECTIONS_COUNT = 50;\r\n\r\nvar sectionContainerDivIdBase = 'SectionContainerDiv';\r\nvar sectionExpanderImgIdBase = 'SectionExpanderImg';\r\n\r\nvar expandCollapseAllSpanId = 'ExpandCollapseAllSpan';\r\nvar expandCollapseAllImgId = 'ExpandCollapseAllImg';\r\n\r\nvar bigSquareExpandedImgFileName = 'BigSquareExpanded.gif';\r\nvar bigSquareCollapsedImgFileName = 'BigSquareCollapsed.gif';\r\nvar smallSquareExpandedImgFileName = 'SmallSquareExpanded.gif';\r\nvar smallSquareCollapsedImgFileName = 'SmallSquareCollapsed.gif';\r\n\r\nvar expandAllStr = 'Expand All';\r\nvar collapseAllStr = 'Collapse All';\r\n\r\nvar oldLeftFrameWidth = null;\r\n\r\nfunction SetSectionVisibility(sectionIndex, value)\r\n{\r\n    var div = document.getElementById(sectionContainerDivIdBase + sectionIndex);\r\n    var img = document.getElementById(sectionExpanderImgIdBase + sectionIndex);\r\n    \r\n    if (div && img)\r\n    {\r\n        if (value)\r\n        {\r\n            div.style.visibility = 'visible';\r\n            div.style.display = '';\r\n            \r\n            img.src = ReplaceFileName(img.src, bigSquareExpandedImgFileName);\r\n        }\r\n        else\r\n        {\r\n            div.style.display = 'none';\r\n            div.style.visibility = 'hidden';\r\n            \r\n            img.src = ReplaceFileName(img.src, bigSquareCollapsedImgFileName);\r\n        }\r\n    }\r\n    else\r\n    {\r\n        alert('Error: at SetSectionVisibilityInDoc()');\r\n    }\r\n}\r\n\r\nfunction ToggleSectionVisibility(sectionIndex)\r\n{\r\n    var div = document.getElementById(sectionContainerDivIdBase + sectionIndex);\r\n    var img = document.getElementById(sectionExpanderImgIdBase + sectionIndex);\r\n    \r\n    if (div && img)\r\n    {\r\n        if (div.style.visibility == 'visible' || div.style.visibility == '')\r\n        {\r\n            SetSectionVisibility(sectionIndex, false);\r\n            \r\n            // we've just collapsed a section, so check whether all sections\r\n            // are collapsed and if this is the case, then set ExpandCollapseAllSpan\r\n            // to 'Expand All'\r\n            var allCollapsed = true;\r\n            for (var i = 0; i < MAX_SECTIONS_COUNT; i++)\r\n            {\r\n                var tempDiv = document.getElementById(sectionContainerDivIdBase + i);\r\n                if (tempDiv)\r\n                {\r\n                    if (tempDiv.style.visibility == 'visible' || tempDiv.style.visibility == '')\r\n                    {\r\n                        allCollapsed = false;\r\n                    \r\n                        break;\r\n                    }\r\n                }\r\n            }\r\n            \r\n            if (allCollapsed)\r\n            {\r\n                SetExpandCollapseAllToExpandAll();\r\n            }\r\n        }\r\n        else\r\n        {\r\n            SetSectionVisibility(sectionIndex, true);\r\n            \r\n            // set ExpandCollapseAllSpan to 'Collapse All' because we've just\r\n            // expanded some section\r\n            SetExpandCollapseAllToCollapseAll();\r\n        }\r\n    }\r\n    else\r\n    {\r\n        alert('Error: at ToggleSectionVisibility()');\r\n    }\r\n}\r\n\r\nfunction ToggleAllSectionsVisibility()\r\n{\r\n    var span = document.getElementById(expandCollapseAllSpanId);\r\n    var img = document.getElementById(expandCollapseAllImgId);\r\n    var visibliity;\r\n    \r\n    if (span && img)\r\n    {\r\n        if (span.innerHTML == expandAllStr)\r\n        {\r\n            span.innerHTML = collapseAllStr;\r\n            img.src = ReplaceFileName(img.src, smallSquareExpandedImgFileName);\r\n            \r\n            visibility = true;\r\n        }\r\n        else\r\n        {\r\n            span.innerHTML = expandAllStr;\r\n            img.src = ReplaceFileName(img.src, smallSquareCollapsedImgFileName);\r\n            \r\n            visibility = false;\r\n        }\r\n        \r\n        for (var i = 0; i < MAX_SECTIONS_COUNT; i++)\r\n        {\r\n            if (document.getElementById(sectionContainerDivIdBase + i))\r\n            {\r\n                SetSectionVisibility(i, visibility);\r\n            }\r\n        }\r\n    }\r\n    else\r\n    {\r\n        alert('Error: at ToggleSectionVisibility()');\r\n    }\r\n}\r\n\r\nfunction SetExpandCollapseAllToCollapseAll()\r\n{\r\n    var span = document.getElementById(expandCollapseAllSpanId);\r\n    var img = document.getElementById(expandCollapseAllImgId);\r\n\r\n    if (span && img)\r\n    {\r\n        span.innerHTML = collapseAllStr;\r\n        img.src = ReplaceFileName(img.src, smallSquareExpandedImgFileName);\r\n    }\r\n    else\r\n    {\r\n        alert('Error: at SetExpandCollapseAllToCollapseAll()');\r\n    }\r\n}\r\n\r\nfunction SetExpandCollapseAllToExpandAll()\r\n{\r\n    var span = document.getElementById(expandCollapseAllSpanId);\r\n    var img = document.getElementById(expandCollapseAllImgId);\r\n\r\n    if (span && img)\r\n    {\r\n        span.innerHTML = expandAllStr;\r\n        img.src = ReplaceFileName(img.src, smallSquareCollapsedImgFileName);\r\n    }\r\n    else\r\n    {\r\n        alert('Error: at ToggleSectionVisibility() {1}');\r\n    }\r\n}\r\n\r\nfunction ReplaceFileName(filePath, fileName)\r\n{\r\n    var ch = '/';\r\n    var index = filePath.lastIndexOf(ch);\r\n    \r\n    if (index == -1)\r\n    {\r\n        ch = '\\\\';\r\n        index = filePath.lastIndexOf(ch);\r\n    }\r\n    \r\n    if (index == -1)\r\n    {\r\n        return fileName;\r\n    }\r\n    else\r\n    {\r\n        return filePath.substring(0, index) + ch + fileName;\r\n    }\r\n}\r\n\r\nfunction ToggleLeftFrame()\r\n{\r\n    var frameset = parent.document.getElementById(\"Frameset\")\r\n\r\n    if (!frameset)\r\n    {\r\n        alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the frameset element.\");\r\n        return;\r\n    }\r\n\r\n    var contentsDiv = document.getElementById(\"Contents\");\r\n    \r\n    if (!contentsDiv)\r\n    {\r\n        alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the Contents div.\");\r\n        return;\r\n    }\r\n    \r\n    var headerTitleDiv = document.getElementById(\"HeaderTitle\");\r\n    \r\n    if (!headerTitleDiv)\r\n    {\r\n        alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the HeaderTitle div.\");\r\n        return;\r\n    }\r\n    \r\n    var switcherImg = document.getElementById(\"LeftMenuSwitcherLink\");\r\n    \r\n    if (!switcherImg)\r\n    {\r\n        alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the LeftMenuSwitcherLink div.\");\r\n        return;\r\n    }\r\n\r\n    if (contentsDiv.style.visibility == 'visible' || contentsDiv.style.visibility == '')\r\n    {\r\n        var splitted = frameset.cols.split(',');\r\n        if (splitted.length != 2)\r\n        {\r\n            alert(\"Error: at ToggleLeftFrame(): Wrong format of frameset.cols attribute.\");\r\n            return;\r\n        }\r\n        \r\n        oldLeftFrameWidth = splitted[0];\r\n        \r\n        frameset.cols = \"20,*\";\r\n\r\n        var leftFrame = parent.document.getElementById(\"LeftMenuFrame\");\r\n        if (!leftFrame)\r\n        {\r\n            alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the left menu frame.\");\r\n            return;\r\n        }\r\n        leftFrame.noResize = true;\r\n\r\n        contentsDiv.style.visibility = 'hidden';\r\n        contentsDiv.style.display = 'none';\r\n        headerTitleDiv.style.visibility = 'hidden';\r\n        switcherImg.src = ReplaceFileName(switcherImg.src, 'RightArrow.gif');\r\n    }\r\n    else\r\n    {\r\n        if (!oldLeftFrameWidth)\r\n        {\r\n            alert(\"Error: at ToggleLeftFrame(): Couldn't restore the width of the left frame.\");\r\n            return;\r\n        }\r\n        else\r\n        {\r\n            frameset.cols = oldLeftFrameWidth + \",*\";\r\n        }\r\n        \r\n        var leftFrame = parent.document.getElementById(\"LeftMenuFrame\");\r\n        if (!leftFrame)\r\n        {\r\n            alert(\"Error: at ToggleLeftFrame(): Couldn't obtain reference to the left menu frame.\");\r\n            return;\r\n        }\r\n        leftFrame.noResize = false;\r\n\r\n        contentsDiv.style.visibility = 'visible';\r\n        contentsDiv.style.display = 'block';\r\n        headerTitleDiv.style.visibility = 'visible';\r\n        switcherImg.src = ReplaceFileName(switcherImg.src, 'LeftArrow.gif');\r\n    }\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/JS/ImmJSLib.js",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\n/// <summary>\r\n/// Creates new object containing mouse coordinates which are extracted from\r\n/// the supplied JavaScript mouse event.\r\n/// </summary>\r\n/// <param name=\"e\">JavaScript mouse event.</param>\r\n/// <returns>New object containing mouse coordinates..</returns>\r\nfunction MouseEventArgs(e)\r\n{\r\n    if (e.pageX)\r\n    {\r\n        this.x = e.pageX;\r\n    }\r\n    else if (e.clientX)\r\n    {\r\n        this.x = e.clientX;\r\n    }\r\n\r\n    if (e.pageY)\r\n    {\r\n        this.y = e.pageY;\r\n    }\r\n    else if (e.clientY)\r\n    {\r\n        this.y = e.clientY;\r\n    }\r\n}\r\n\r\n\r\nfunction GetStyleValue(obj, propertyName)\r\n{\r\n    if (!obj || !propertyName)\r\n    {\r\n        alert(\"Error: At GetStyleValue(): Parameters 'obj' and 'parameterName' can't be null.\");\r\n        \r\n        return null;\r\n    }\r\n\r\n    var result = null;\r\n\r\n    if (obj.currentStyle)\r\n    {\r\n        result = obj.currentStyle[propertyName];\r\n    }\r\n    else if (window.getComputedStyle)\r\n    {\r\n        try\r\n        {\r\n            var objStyle = window.getComputedStyle(obj, \"\")\r\n        \r\n            result = objStyle.getPropertyValue(propertyName);\r\n        }\r\n        catch (exc)\r\n        {\r\n            alert(\"Error: At GetStyleValue(): Couldn't access style information for the specified object.\");\r\n        }\r\n    }\r\n    else\r\n    {\r\n        alert(\"Error: At GetStyleValue(): Couldn't access style information for the specified object.\");\r\n        \r\n        return null;\r\n    }\r\n    \r\n    if (!result && propertyName.indexOf('-') != -1)\r\n    {\r\n        var modifiedPropertyName = \"\";\r\n        \r\n        for (var i = 0; i < propertyName.length; i++)\r\n        {\r\n            var ch = propertyName.charAt(i);\r\n            \r\n            if (ch == '-')\r\n            {\r\n                if (i + 1 < propertyName.length)\r\n                {\r\n                    var nextCh = propertyName.charAt(i + 1);\r\n                    \r\n                    if (nextCh != '-')\r\n                    {\r\n                        modifiedPropertyName += nextCh.toUpperCase();\r\n                        i++;\r\n                    }\r\n                }\r\n            }\r\n            else\r\n            {\r\n                modifiedPropertyName += ch;\r\n            }\r\n        }\r\n        \r\n        return GetStyleValue(obj, modifiedPropertyName);\r\n    }\r\n    \r\n    return result;\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/JS/TreeView.js",
    "content": "/*\r\n * Copyright 2007 - 2009 Marek St�j\r\n * \r\n * This file is part of ImmDoc .NET.\r\n *\r\n * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation; either version 2 of the License, or\r\n * (at your option) any later version.\r\n *\r\n * ImmDoc .NET is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n * GNU General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU General Public License\r\n * along with ImmDoc .NET; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n */\r\n\r\nvar lastSelectedAElement = null;\r\n\r\nfunction TV_Node_Clicked(subtreePath)\r\n{\r\n    var subtreeDiv = document.getElementById('TV_Subtree_' + subtreePath);\r\n    var iconImg = document.getElementById('TV_NodeExpansionIcon_' + subtreePath);\r\n    \r\n    if (!subtreeDiv || !iconImg)\r\n    {\r\n        alert(\"Error: At TV_Node_Clicked(): Couldn't obtain reference to appropriate subtree or node expansion icon.\");\r\n        return;\r\n    }\r\n    \r\n    if (GetStyleValue(subtreeDiv, 'display') == 'none')\r\n    {\r\n        TV_ToggleSubtreeVisibility(subtreeDiv, iconImg, true);\r\n    }\r\n    else\r\n    {\r\n        TV_ToggleSubtreeVisibility(subtreeDiv, iconImg, false);\r\n    }\r\n}\r\n\r\nfunction TV_ToggleSubtreeVisibility(subtreeDiv, iconImg, value)\r\n{\r\n    if (value)\r\n    {\r\n        subtreeDiv.style.visibility = 'visible';\r\n        subtreeDiv.style.display = 'block';\r\n        \r\n        iconImg.src = ReplaceFileName(iconImg.src, 'TV_Minus.gif');\r\n    }\r\n    else\r\n    {\r\n        subtreeDiv.style.visibility = 'hidden';\r\n        subtreeDiv.style.display = 'none';\r\n        \r\n        iconImg.src = ReplaceFileName(iconImg.src, 'TV_Plus.gif');\r\n    }\r\n}\r\n\r\nfunction TV_NodeLink_Clicked(aElement, subtreePath)\r\n{\r\n    if (!aElement)\r\n    {\r\n        alert(\"Error: Undefine link object.\");\r\n        return;\r\n    }\r\n\r\n    if (!lastSelectedAElement)\r\n    {\r\n        lastSelectedAElement = document.getElementById('TV_RootNode');\r\n        if (!lastSelectedAElement)\r\n        {\r\n            alert(\"Error: Couldn't find root node.\");\r\n            return;\r\n        }\r\n    }\r\n\r\n    lastSelectedAElement.className = 'TV_NodeLink';\r\n    lastSelectedAElement = aElement;\r\n    aElement.className = 'TV_NodeLink_Selected';\r\n    \r\n    if (subtreePath)\r\n    {\r\n        var subtreeDiv = document.getElementById('TV_Subtree_' + subtreePath);\r\n        var iconImg = document.getElementById('TV_NodeExpansionIcon_' + subtreePath);\r\n        \r\n        if (subtreeDiv && iconImg)\r\n        {\r\n            TV_ToggleSubtreeVisibility(subtreeDiv, iconImg, true);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "lib/Sasa-v0.9.3-docs/index.html",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\r\n\r\n<head>\r\n\r\n    <!--\r\n    /*\r\n     * Copyright 2007 - 2009 Marek Stój\r\n     * \r\n     * This file is part of ImmDoc .NET.\r\n     *\r\n     * ImmDoc .NET is free software; you can redistribute it and/or modify\r\n     * it under the terms of the GNU General Public License as published by\r\n     * the Free Software Foundation; either version 2 of the License, or\r\n     * (at your option) any later version.\r\n     *\r\n     * ImmDoc .NET is distributed in the hope that it will be useful,\r\n     * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n     * GNU General Public License for more details.\r\n     *\r\n     * You should have received a copy of the GNU General Public License\r\n     * along with ImmDoc .NET; if not, write to the Free Software\r\n     * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r\n     */\r\n    -->\r\n\r\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n    <title>Documentation Project</title>\r\n</head>\r\n\r\n<frameset id=\"Frameset\" cols=\"25%, *\">\r\n\r\n    <frame id=\"LeftMenuFrame\" name=\"LeftMenuFrame\" src=\"Contents/0/0.html\" scrolling=\"auto\" />\r\n    <frame id=\"ContentsFrame\" name=\"ContentsFrame\" src=\"Contents/0/1.html\" scrolling=\"no\" />\r\n    \r\n    <noframes>\r\n        <body>\r\n            Sorry. Your browser doesn't support frames.\r\n        </body>\r\n    </noframes>\r\n    \r\n</frameset>\r\n\r\n</html>\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/ASL - Apache Software Foundation License.txt",
    "content": "Apache License, Version 2.0\r\n\r\nApache License\r\nVersion 2.0, January 2004\r\nhttp://www.apache.org/licenses/\r\n\r\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n1. Definitions.\r\n\r\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\r\n\r\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\r\n\r\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\r\n\r\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\r\n\r\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\r\n\r\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\r\n\r\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\r\n\r\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\r\n\r\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\r\n\r\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\r\n\r\n   1. You must give any other recipients of the Work or Derivative Works a copy of this License; and\r\n\r\n   2. You must cause any modified files to carry prominent notices stating that You changed the files; and\r\n\r\n   3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\r\n\r\n   4. If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\r\n\r\nYou may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\r\n\r\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\r\n\r\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\r\n\r\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\r\n\r\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\r\n\r\nEND OF TERMS AND CONDITIONS\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/BreakingChanges.txt",
    "content": "================================================================================================\r\nchange - Removed overloads of logging methods that were taking format string from ILogger and\r\n\tILogger and IExtendedLogger and didn't have word Format in their name.\r\n\tFor example:\r\n    void Error(string format, params object[] args); // was removed\r\n    void ErrorFormat(string format, params object[] args); //use this one instead\r\n\r\n\r\nimpact - low\r\nfixability - medium\r\nrevision - \r\n\r\ndescription - To minimize confusion and duplication those methods were removed.\r\n\r\nfix - Use methods that have explicit \"Format\" word in their name and same signature.\r\n================================================================================================\r\nchange - Removed WebLogger and WebLoggerFactory\r\n\r\nimpact - low\r\nfixability - medium\r\nrevision - \r\n\r\ndescription - To minimize management overhead the classes were removed so that only single \r\n\tClient Profile version of Castle.Core can be distributed.\r\n\r\nfix - You can use NLog or Log4Net web logger integration, or reuse implementation of existing\r\n\tweb logger and use it as a custom logger.\r\n\r\n================================================================================================\r\nchange - Removed obsolete overload of ProxyGenerator.CreateClassProxy\r\n\r\nimpact - low\r\nfixability - trivial\r\nrevision - \r\n\r\ndescription - Deprecated overload of ProxyGenerator.CreateClassProxy was removed to keep the\r\n\tmethod consistent with other methods and to remove confusion\r\n\r\nfix - whenever removed overload was used, use one of the other overloads.\r\n\r\n================================================================================================\r\nchange - IProxyGenerationHook.NonVirtualMemberNotification method was renamed\r\n\r\nimpact - high\r\nfixability - easy\r\nrevision - \r\n\r\ndescription - to accommodate class proxies with target method NonVirtualMemberNotification on\r\n\tIProxyGenerationHook type was renamed to more accurate NonProxyableMemberNotification\r\n\tsince for class proxies with target not just methods but also fields and other member that\r\n\tbreak the abstraction will be passed to this method.\r\n\r\nfix - whenever NonVirtualMemberNotification is used/implemented change the method name to\r\n\tNonProxyableMemberNotification. Implementors should also accommodate possibility that not\r\n\tonly MethodInfos will be passed as method's second parameter.\r\n\t\r\n================================================================================================\r\nchange - DynamicProxy will now allow to intercept members of System.Object\r\n\r\nimpact - very low\r\nfixability - easy\r\nrevision - \r\n\r\ndescription - to allow scenarios like mocking of System.Object members, DynamicProxy will not\r\n\tdisallow proxying of these methods anymore. AllMethodsHook (default IProxyGenerationHook)\r\n\twill still filter them out though.\r\n\r\nfix - whenever custom IProxyGenerationHook is used, user should account for System.Object's\r\n\tmembers being now passed to ShouldInterceptMethod and NonVirtualMemberNotification methods\r\n\tand if neccessary update the code to handle them appropriately.\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/Changes.txt",
    "content": "3.0.0 (2011-12-13)\r\n==================\r\nno major changes\r\n\r\n3.0.0 RC 1 (2011-11-20)\r\n==================\r\n- Applied Jeff Sharps patch that refactored Xml DictionaryAdapter to improve maintainability and enable more complete functionality\r\n\r\n- fixed DYNPROXY-165 - Object.GetType() and Object.MemberwiseClone() should be ignored and not reported as non-interceptable to IProxyGenerationHook\r\n- fixed DYNPROXY-164 - Invalid Proxy type generated when there are more than one base class generic constraints\r\n- fixed DYNPROXY-162 - ref or out parameters can not be passed back if proxied method throw an exception\r\n\r\n3.0.0 beta 1 (2011-08-14)\r\n==================\r\n- fixed CORE-37 - TAB characters in the XML Configuration of a component parameter is read as String.Empty\r\n- fixed DYNPROXY-161 - Strong Named DynamicProxy Assembly Not Available in Silverligh\r\n- fixed DYNPROXY-159 - Sorting MemberInfo array for serialization has side effects\r\n- fixed DYNPROXY-158 - Can't create class proxy with target and without target in same ProxyGenerator\r\n- fixed DYNPROXY-153 - When proxying a generic interface which has an interface as GenericType . No proxy can be created\r\n- fixed DYNPROXY-151 - Cast error when using attributes \r\n\r\n- implemented CORE-33 - Add lazy logging\r\n- implemented DYNPROXY-156 - Provide mechanism for interceptors to implement retry logic\r\n\r\n- removed obsolete members from ILogger and its implementations\r\n\r\n2.5.2 (2010-11-15)\r\n==================\r\n- fixed DYNPROXY-150 - Finalizer should not be proxied\r\n- implemented DYNPROXY-149 - Make AllMethodsHook members virtual so it can be used as a base class\r\n- fixed DYNPROXY-147 - Can't crete class proxies with two non-public methods having same argument types but different return type\r\n- fixed DYNPROXY-145 Unable to proxy System.Threading.SynchronizationContext (.NET 4.0)\r\n- fixed DYNPROXY-144 - params argument not supported in constructor\r\n- fixed DYNPROXY-143 - Permit call to reach \"non-proxied\" methods of inherited interfaces\r\n- implemented DYNPROXY-139 - Better error message \r\n- fixed DYNPROXY-133 - Debug assertion in ClassProxyInstanceContributor fails when proxying ISerializable with an explicit implementation of GetObjectData\r\n- fixed CORE-32 - Determining if permission is granted via PermissionUtil does not work in .NET 4\r\n- applied patch by Alwin Meijs - ExtendedLog4netFactory can be configured with a stream from for example an embedded log4net xml config\r\n- Upgraded NLog to 2.0 Beta 1\r\n- Added DefaultXmlSerializer to bridge XPathAdapter with standard Xml Serialization.\r\n- XPathAdapter for DictionaryAdapter added IXPathSerializer to provide hooks for custom serialization.\r\n\r\n2.5.1 (2010-09-21)\r\n==================\r\n- Interface proxy with target Interface now accepts null as a valid target value (which can be replaced at a later stage).\r\n- DictionaryAdapter behavior overrides are now ordered with all other behaviors\r\n- BREAKING CHANGE: removed web logger so that by default Castle.Core works in .NET 4 client profile\r\n- added paramter to ModuleScope disabling usage of signed modules. This is to workaround issue DYNPROXY-134. Also a descriptive exception message is being thrown now when the issue is detected.\r\n- Added IDictionaryBehaviorBuilder to allow grouping behaviors\r\n- Added GenericDictionaryAdapter to simplify generic value sources\r\n- fixed issue DYNPROXY-138 - Error message missing space\r\n- fixed false positive where DynamicProxy would not let you proxy interface with target interface when target object was a COM object.\r\n- fixed ReflectionBasedDictionaryAdapter when using indexed properties\r\n\r\n2.5.0 (2010-08-21)\r\n==================\r\n- DynamicProxy will now not replicate non-public attribute types\r\n- Applied patch from Kenneth Siewers Mller which adds parameterless constructor to DefaultSmtpSender implementation, to be able to configure the inner SmtpClient from the application configuration file (system.net.smtp).\r\n- added support for .NET 4 and Silverlight 4, updated solution to VisualStudio 2010\r\n- Removed obsolete overload of CreateClassProxy\r\n- Added class proxy with taget\r\n- Added ability to intercept explicitly implemented generic interface methods on class proxy.\r\n- DynamicProxy does not disallow intercepting members of System.Object anymore. AllMethodsHook will still filter them out though.\r\n- Added ability to intercept explicitly implemented interface members on class proxy. Does not support generic members.\r\n- Merged DynamicProxy into Core binary\r\n- fixed DYNPROXY-ISSUE-132 - \"MetaProperty equals implementation incorrect\"\r\n- Fixed bug in DiagnosticsLoggerTestCase, where when running as non-admin, the teardown will throw SecurityException (contributed by maxild)\r\n- Split IoC specific classes into Castle.Windsor project\r\n- Merged logging services solution\r\n- Merged DynamicProxy project\r\n\r\n1.2.0 (2010-01-11)\r\n==================\r\n\r\n- Added IEmailSender interface and its default implementation\r\n\r\n1.2.0 beta (2009-12-04)\r\n==================\r\n\r\n- BREAKING CHANGE - added ChangeProxyTarget method to IChangeProxyTarget interface\r\n- added docs to IChangeProxyTarget methods\r\n- Fixed DYNPROXY-ISSUE-108 - Obtaining replicated custom attributes on proxy may fail when property setter throws exception on default value\r\n- Moved custom attribute replication from CustomAttributeUtil to new interface - IAttributeDisassembler\r\n- Exposed IAttributeDisassembler via ProxyGenerationOptions, so that users can plug their implementation for some convoluted scenarios. (for Silverlight)\r\n- Moved IInterceptorSelector from Dynamic Proxy to Core (IOC-ISSUE-156)\r\n\r\n1.1.0 (2009-05-04)\r\n==================\r\n\r\n- Applied Eric Hauser's patch fixing CORE-ISSUE-22\r\n  \"Support for environment variables in resource URI\"\r\n\r\n- Applied Gauthier Segay's patch fixing CORE-ISSUE-20\r\n  \"Castle.Core.Tests won't build via nant because it use TraceContext without referencing System.Web.dll\"\r\n\r\n- Added simple interface to ComponentModel to make optional properties required. \r\n\r\n- Applied Mark's -- <mwatts42@gmail.com> -- patch that changes \r\n  the Core to support being compiled for Silverlight 2\r\n\r\n- Applied Louis DeJardin's patch adding TraceLogger as a new logger implementation\r\n\r\n- Applied Chris Bilson's patch fixing CORE-15\r\n  \"WebLogger Throws When Logging Outside of an HttpContext\"\r\n\r\nRelease Candidate 3\r\n===================\r\n\r\n- Added IServiceProviderEx which extends IServiceProvider\r\n\r\n- Added Pair<T,S> class. \r\n\r\n- Applied Bill Pierce's patch fixing CORE-9 \r\n  \"Allow CastleComponent Attribute to Specify Lifestyle in Constructor\"\r\n\r\n- Added UseSingleInterfaceProxy to CompomentModel to control the proxying\r\n  behavior while maintaining backward compatibility.\r\n  Added the corresponding ComponentProxyBehaviorAttribute.\r\n\r\n- Made NullLogger and IExtnededLogger\r\n\r\n- Enabled a new format on ILogger interface, with 6 overloads for each method:\r\n    Debug(string)\r\n    Debug(string, Exception)\r\n    Debug(string, params object[])\r\n    DebugFormat(string, params object[])\r\n    DebugFormat(Exception, string, params object[])\r\n    DebugFormat(IFormatProvider, string, params object[])\r\n    DebugFormat(IFormatProvider, Exception, string, params object[])\r\n\r\n  The \"FatalError\" overloads where marked as [Obsolete], replaced by \"Fatal\" and \"FatalFormat\".\r\n\r\n0.0.1.0\r\n=======\r\n\r\n- Included IProxyTargetAccessor\r\n\r\n- Removed IMethodInterceptor and IMethodInvocation, that have been replaced\r\n  by IInterceptor and IInvocation\r\n\r\n- Added FindByPropertyInfo to PropertySetCollection\r\n\r\n- Made the DependencyModel.IsOptional property writable\r\n\r\n- Applied Curtis Schlak's patch fixing IOC-27\r\n  \"assembly resource format only works for resources where the assemblies name and default namespace are the same.\"\r\n  \r\n  Quoting:\r\n\r\n  \"I chose to preserve backwards compatibility by implementing the code in the \r\n  reverse order as suggested by the reporter. Given the following URI for a resource:\r\n\r\n  assembly://my.cool.assembly/context/moo/file.xml\r\n\r\n  It will initially look for an embedded resource with the manifest name of \r\n  \"my.cool.assembly.context.moo.file.xml\" in the loaded assembly my.cool.assembly.dll. \r\n  If it does not find it, then it looks for the embedded resource with the manifest name \r\n  of \"context.moo.file.xml\".\r\n\r\n- IServiceEnabledComponent Introduced to be used across the project as\r\n  a standard way to have access to common services, for example, logger factories\r\n\r\n- Added missing log factories\r\n\r\n- Refactor StreamLogger and DiagnosticLogger to be more consistent behavior-wise\r\n\r\n- Refactored WebLogger to extend LevelFilteredLogger (removed duplication)\r\n\r\n- Refactored LoggerLevel order\r\n\r\n- Project started\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/Committers.txt",
    "content": "This file names who's behind the Castle Team. You can find more about us at http://www.castleproject.org/community/team.html\r\n\r\nCommitters\r\n==========\r\n(ordered by the date when joined the project)\r\n\r\n- hammett/Hamilton Verissimo\r\n- Henry Conceio\r\n- Kevin Williams\r\n- Craig Neuwirt\r\n- Gilles Bayon\r\n- Andrew Hallock\r\n- Jason Nelson\r\n- Dru Sellers\r\n- John Morales\r\n- CobraLord\r\n- Dan\r\n- Tatham Oddie\r\n- Fabio David Batista\r\n- Chad Humphries\r\n- Ayende Rahien\r\n- G. Richard Bellamy\r\n- Roelof Blom\r\n- Ahmed Ghandour \r\n- Josh Robb\r\n- Ernst Naezer\r\n- Marc-Andre Cournoyer\r\n- Fabian Schmied\r\n- Dave Godfrey\r\n- Markus Zywitza\r\n- Lee Henson\r\n- Ken Egozi\r\n- Chris Ortman\r\n- Jonathon Rossi\r\n- Tuna Toksz\r\n- Krzysztof Kozmic\r\n- Mauricio Scheffer\r\n- John Simons\r\n\r\nManagers \r\n========\r\n\r\n  Patch Manager\r\n  -------------\r\n\r\n  - Josh Robb\r\n\r\n  Documentation Manager\r\n  ---------------------\r\n\r\n  - \r\n\r\n\r\nPMC Members \r\n===========\r\n(ordered by the date when joined the PMC)\r\n\r\n- hammett/Hamilton Verissimo (Chair)\r\n- Henry Conceio\r\n- Kevin Williams\r\n- Craig Neuwirt\r\n- Gilles Bayon\r\n- Chad Humphries\r\n- Ayende Rahien\r\n- Fabio David Batista\r\n- Roelof Blom\r\n- Josh Robb\r\n- Jonathon Rossi\r\n\r\nEmeritus \r\n========\r\n(no longer active committers)\r\n\r\n- Gilles Bayon\r\n- Dan\r\n- Andrew Hallock\r\n- John Morales\r\n- CobraLord\r\n- Tatham Oddie\r\n- Ahmed Ghandour \r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/lib/net35/Castle.Core.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Castle.Core</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ReferenceAttribute\">\r\n            <summary>\r\n            Specifies assignment by reference rather than by copying.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IfExistsAttribute\">\r\n            <summary>\r\n            Suppresses any on-demand behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfEmptyAttribute\">\r\n            <summary>\r\n            Removes a property if null or empty string, guid or collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfAttribute\">\r\n            <summary>\r\n            Removes a property if matches value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\">\r\n            <summary>\r\n            Defines the contract for customizing dictionary access.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehavior.Copy\">\r\n            <summary>\r\n            Copies the dictionary behavior.\r\n            </summary>\r\n            <returns>null if should not be copied.  Otherwise copy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.IDictionaryBehavior.ExecutionOrder\">\r\n            <summary>\r\n            Determines relative order to apply related behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter\">\r\n            <summary>\r\n            Defines the contract for updating dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the stored dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>true if the property should be stored.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ICondition\">\r\n            <summary>\r\n            Contract for value matching.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.VolatileAttribute\">\r\n            <summary>\r\n            Indicates that underlying values are changeable and should not be cached.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryInitializer\">\r\n            <summary>\r\n             Contract for dictionary initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"behaviors\">The dictionary behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Abstract implementation of <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Conract for traversing a <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryCreate\">\r\n            <summary>\r\n            Contract for creating additional Dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\">\r\n            <summary>\r\n            Contract for manipulating the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryEdit\">\r\n            <summary>\r\n            Contract for editing the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryNotify\">\r\n            <summary>\r\n            Contract for managing Dictionary adapter notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidate\">\r\n            <summary>\r\n            Contract for validating Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder\">\r\n            <summary>\r\n            Defines the contract for building <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder.BuildBehaviors\">\r\n            <summary>\r\n            Builds the dictionary behaviors.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter\">\r\n            <summary>\r\n            Abstract adapter for the <see cref=\"T:System.Collections.IDictionary\"/> support\r\n            needed by the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n            Adds an element with the provided key and value to the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The <see cref=\"T:System.Object\"></see> to use as the key of the element to add.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"></see> to use as the value of the element to add.</param>\r\n            <exception cref=\"T:System.ArgumentException\">An element with the same key already exists in the <see cref=\"T:System.Collections.IDictionary\"></see> object. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Clear\">\r\n            <summary>\r\n            Removes all elements from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.IDictionary\"></see> object contains an element with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to locate in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</param>\r\n            <returns>\r\n            true if the <see cref=\"T:System.Collections.IDictionary\"></see> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n            Returns an <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n            Removes the element with the specified key from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The key of the element to remove.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n            Copies the elements of the <see cref=\"T:System.Collections.ICollection\"></see> to an <see cref=\"T:System.Array\"></see>, starting at a particular <see cref=\"T:System.Array\"></see> index.\r\n            </summary>\r\n            <param name=\"array\">The one-dimensional <see cref=\"T:System.Array\"></see> that is the destination of the elements copied from <see cref=\"T:System.Collections.ICollection\"></see>. The <see cref=\"T:System.Array\"></see> must have zero-based indexing.</param>\r\n            <param name=\"index\">The zero-based index in array at which copying begins.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">array is null. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">The type of the source <see cref=\"T:System.Collections.ICollection\"></see> cannot be cast automatically to the type of the destination array. </exception>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">index is less than zero. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source <see cref=\"T:System.Collections.ICollection\"></see> is greater than the available space from index to the end of the destination array. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"></see> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsFixedSize\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Keys\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Values\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Count\">\r\n            <summary>\r\n            Gets the number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n            Gets a value indicating whether access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n            Gets an object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.BindingList`1\">\r\n            <summary>\r\n              Provides a generic collection that supports data binding.\r\n            </summary>\r\n            <remarks>\r\n              This class wraps the CLR <see cref=\"T:System.ComponentModel.BindingList`1\"/>\r\n              in order to implement the Castle-specific <see cref=\"T:Castle.Components.DictionaryAdapter.IBindingList`1\"/>.\r\n            </remarks>\r\n            <typeparam name=\"T\">The type of elements in the list.</typeparam>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              using default values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.Collections.Generic.IList{`0})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              with the specified list.\r\n            </summary>\r\n            <param name=\"list\">\r\n              An <see cref=\"T:System.Collections.Generic.IList`1\"/> of items\r\n              to be contained in the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.ComponentModel.BindingList{`0})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              wrapping the specified <see cref=\"T:System.ComponentModel.BindingList`1\"/> instance.\r\n            </summary>\r\n            <param name=\"list\">\r\n              A <see cref=\"T:System.ComponentModel.BindingList`1\"/>\r\n              to be wrapped by the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter\">\r\n            <summary>\r\n            Defines the contract for retrieving dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.Xml.XmlAdapter.#ctor(Castle.Components.DictionaryAdapter.Xml.IXmlNode,Castle.Components.DictionaryAdapter.Xml.XmlReferenceManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.Xml.XmlAdapter\"/> class\r\n            that represents a child object in a larger object graph.\r\n            </summary>\r\n            <param name=\"node\"></param>\r\n            <param name=\"references\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer\">\r\n            <summary>\r\n             Contract for dictionary meta-data initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory,Castle.Components.DictionaryAdapter.DictionaryAdapterMeta)\">\r\n            <summary>\r\n            Performs any initialization of the dictionary adapter meta-data.\r\n            </summary>\r\n            <param name=\"factory\">The dictionary adapter factory.</param>\r\n            <param name=\"dictionaryMeta\">The dictionary adapter meta.</param>\r\n            \r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.CollectionExtensions.IsNullOrEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n              Checks whether or not collection is null or empty. Assumes colleciton can be safely enumerated multiple times.\r\n            </summary>\r\n            <param name = \"this\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToCastleCore\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to Castle.Core \r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToCastleCore)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToDynamicProxyGenAssembly2\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to proxy types generated by DynamicProxy. Required when proxying internal types.\r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToDynamicProxyGenAssembly2)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ComponentAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a nested component.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Builds the specified key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The current key.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>The updated key</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.NoPrefix\">\r\n            <summary>\r\n            Applies no prefix.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.Prefix\">\r\n            <summary>\r\n            Gets or sets the prefix.\r\n            </summary>\r\n            <value>The prefix.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterAttribute\">\r\n            <summary>\r\n            Identifies the dictionary adapter types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.FetchAttribute\">\r\n            <summary>\r\n            Identifies an interface or property to be pre-fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor\">\r\n            <summary>\r\n            Instructs fetching to occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Instructs fetching according to <paramref name=\"fetch\"/>\r\n            </summary>\r\n            <param name=\"fetch\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.FetchAttribute.Fetch\">\r\n            <summary>\r\n            Gets whether or not fetching should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.GroupAttribute\">\r\n            <summary>\r\n            Assigns a property to a group.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.GroupAttribute.Group\">\r\n            <summary>\r\n            Gets the group the property is assigned to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"key\">The key.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keys\">The compound key.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties of an interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a default instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keyPrefix\">The prefix for the keyed properties of the interface.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.KeyPrefix\">\r\n            <summary>\r\n            Gets the prefix key added to the properties of the interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\">\r\n            <summary>\r\n            Substitutes part of key with another string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute.#ctor(System.String,System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"oldValue\">The old value.</param>\r\n            <param name=\"newValue\">The new value.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.MultiLevelEditAttribute\">\r\n            <summary>\r\n            Requests support for multi-level editing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.NewGuidAttribute\">\r\n            <summary>\r\n            Generates a new GUID on demand.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.OnDemandAttribute\">\r\n            <summary>\r\n            Support for on-demand value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropagateNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringFormatAttribute\">\r\n            <summary>\r\n            Provides simple string formatting from existing properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Format\">\r\n            <summary>\r\n            Gets the string format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Properties\">\r\n            <summary>\r\n            Gets the format properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringListAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a delimited string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringListAttribute.Separator\">\r\n            <summary>\r\n            Gets the separator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringValuesAttribute\">\r\n            <summary>\r\n            Converts all properties to strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringValuesAttribute.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.SuppressNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer\">\r\n            <summary>\r\n             Contract for property descriptor initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer.Initialize(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"propertyDescriptor\">The property descriptor.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.TypeKeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties using the interface name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\">\r\n            <summary>\r\n            Manages conversion between property values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.#ctor(System.ComponentModel.TypeConverter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\"/> class.\r\n            </summary>\r\n            <param name=\"converter\">The converter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\">\r\n            <summary>\r\n            Uses Reflection.Emit to expose the properties of a dictionary\r\n            through a dynamic implementation of a typed interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.Specialized.NameValueCollection\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"nameValues\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the namedValues.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.Specialized.NameValueCollection\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"nameValues\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the namedValues.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Xml.XmlNode\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"xmlNode\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the <see cref=\"T:System.Xml.XmlNode\"/>.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Xml.XmlNode\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"xmlNode\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the <see cref=\"T:System.Xml.XmlNode\"/>.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``2(System.Collections.Generic.IDictionary{System.String,``1})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Type,System.Collections.Generic.IDictionary{System.String,``0})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\">\r\n            <summary>\r\n            Describes a dictionary property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor\">\r\n            <summary>\r\n            Initializes an empty <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Reflection.PropertyInfo,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n             Copies an existinginstance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"source\"></param>\r\n            <param name=\"copyBehaviors\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilder(Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder[])\">\r\n            <summary>\r\n            Adds the key builder.\r\n            </summary>\r\n            <param name=\"builders\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilders(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder})\">\r\n            <summary>\r\n            Adds the key builders.\r\n            </summary>\r\n            <param name=\"builders\">The builders.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyKeyBuilders(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the key builders to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetter(Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter[])\">\r\n            <summary>\r\n            Adds the dictionary getter.\r\n            </summary>\r\n            <param name=\"getters\">The getter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter})\">\r\n            <summary>\r\n            Adds the dictionary getters.\r\n            </summary>\r\n            <param name=\"gets\">The getters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyGetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property getters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetter(Castle.Components.DictionaryAdapter.IDictionaryPropertySetter[])\">\r\n            <summary>\r\n            Adds the dictionary setter.\r\n            </summary>\r\n            <param name=\"setters\">The setter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertySetter})\">\r\n            <summary>\r\n            Adds the dictionary setters.\r\n            </summary>\r\n            <param name=\"sets\">The setters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopySetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property setters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehavior(Castle.Components.DictionaryAdapter.IDictionaryBehavior[])\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryBehavior})\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder[])\">\r\n            <summary>\r\n            Adds the behaviors from the builders.\r\n            </summary>\r\n            <param name=\"builders\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyBehaviors(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the behaviors to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.Copy\">\r\n            <summary>\r\n            Copies the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyName\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            Gets the property type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Property\">\r\n            <summary>\r\n            Gets the property.\r\n            </summary>\r\n            <value>The property.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IsDynamicProperty\">\r\n            <summary>\r\n            Returns true if the property is dynamic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.State\">\r\n            <summary>\r\n            Gets additional state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Fetch\">\r\n            <summary>\r\n            Determines if property should be fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IfExists\">\r\n            <summary>\r\n            Determines if property must exist first.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.SuppressNotifications\">\r\n            <summary>\r\n            Determines if notifications should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Behaviors\">\r\n            <summary>\r\n            Gets the property behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.TypeConverter\">\r\n            <summary>\r\n            Gets the type converter.\r\n            </summary>\r\n            <value>The type converter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExtendedProperties\">\r\n            <summary>\r\n            Gets the extended properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.KeyBuilders\">\r\n            <summary>\r\n            Gets the key builders.\r\n            </summary>\r\n            <value>The key builders.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Setters\">\r\n            <summary>\r\n            Gets the setter.\r\n            </summary>\r\n            <value>The setter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Getters\">\r\n            <summary>\r\n            Gets the getter.\r\n            </summary>\r\n            <value>The getter.</value>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializer(Castle.Components.DictionaryAdapter.IDictionaryInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryInitializer})\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializer(Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer})\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyMetaInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the meta-initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.Initializers\">\r\n            <summary>\r\n            Gets the initializers.\r\n            </summary>\r\n            <value>The initializers.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.MetaInitializers\">\r\n            <summary>\r\n            Gets the meta-data initializers.\r\n            </summary>\r\n            <value>The meta-data initializers.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidator\">\r\n            <summary>\r\n            Contract for dictionary validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.IsValid(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Determines if <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> is valid.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>true if valid.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>The error summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> for a property.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"property\">The property to validate.</param>\r\n            <returns>The property summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Invalidate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Invalidates any results cached by the validator.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.#ctor(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"nameValues\">The name values.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Contains(System.Object)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.IDictionary\"></see> object contains an element with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to locate in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</param>\r\n            <returns>\r\n            true if the <see cref=\"T:System.Collections.IDictionary\"></see> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Adapt(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Adapts the specified name values.\r\n            </summary>\r\n            <param name=\"nameValues\">The name values.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.IsReadOnly\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Item(System.Object)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Internal.AttributesUtil\">\r\n            <summary>\r\n              Helper class for retrieving attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttributes``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attributes. Does not consider inherited attributes!\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttribute``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attribute.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttributes``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attributes.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeConverter(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Gets the type converter.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.HasAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue`1\">\r\n            <summary>\r\n            Contract for typed dynamic value resolution.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue\">\r\n            <summary>\r\n            Contract for dynamic value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LoggerLevel\">\r\n            <summary>\r\n              Supporting Logger levels.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Off\">\r\n            <summary>\r\n              Logging will be off\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Fatal\">\r\n            <summary>\r\n              Fatal logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Error\">\r\n            <summary>\r\n              Error logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Warn\">\r\n            <summary>\r\n              Warn logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Info\">\r\n            <summary>\r\n              Info logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Debug\">\r\n            <summary>\r\n              Debug logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInvocation\">\r\n            <summary>\r\n              Encapsulates an invocation of a proxied method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetArgumentValue(System.Int32)\">\r\n            <summary>\r\n              Gets the value of the argument at the specified <paramref name = \"index\" />.\r\n            </summary>\r\n            <param name = \"index\">The index.</param>\r\n            <returns>The value of the argument at the specified <paramref name = \"index\" />.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethod\">\r\n            <summary>\r\n              Returns the concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, with any generic\r\n              parameters bound to real types.\r\n            </summary>\r\n            <returns>\r\n              The concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, or the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> if\r\n              not a generic method.\r\n            </returns>\r\n            <remarks>\r\n              Can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethodInvocationTarget\">\r\n            <summary>\r\n              Returns the concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, with any\r\n              generic parameters bound to real types.\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <returns>The concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, or\r\n              <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/> if not a generic method.</returns>\r\n            <remarks>\r\n              In debug builds this can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.Proceed\">\r\n            <summary>\r\n              Proceeds the call to the next interceptor in line, and ultimately to the target method.\r\n            </summary>\r\n            <remarks>\r\n              Since interface proxies without a target don't have the target implementation to proceed to,\r\n              it is important, that the last interceptor does not call this method, otherwise a\r\n              <see cref=\"T:System.NotImplementedException\"/> will be thrown.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n              Overrides the value of an argument at the given <paramref name=\"index\"/> with the\r\n              new <paramref name=\"value\"/> provided.\r\n            </summary>\r\n            <remarks>\r\n              This method accepts an <see cref=\"T:System.Object\"/>, however the value provided must be compatible\r\n              with the type of the argument defined on the method, otherwise an exception will be thrown.\r\n            </remarks>\r\n            <param name=\"index\">The index of the argument to override.</param>\r\n            <param name=\"value\">The new value for the argument.</param>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Arguments\">\r\n            <summary>\r\n              Gets the arguments that the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> has been invoked with.\r\n            </summary>\r\n            <value>The arguments the method was invoked with.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.GenericArguments\">\r\n            <summary>\r\n              Gets the generic arguments of the method.\r\n            </summary>\r\n            <value>The generic arguments, or null if not a generic method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\">\r\n            <summary>\r\n              Gets the object on which the invocation is performed. This is different from proxy object\r\n              because most of the time this will be the proxy target object.\r\n            </summary>\r\n            <seealso cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/>\r\n            <value>The invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Method\">\r\n            <summary>\r\n              Gets the <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked on the proxy.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\">\r\n            <summary>\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <value>The method invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Proxy\">\r\n            <summary>\r\n              Gets the proxy object on which the intercepted method is invoked.\r\n            </summary>\r\n            <value>Proxy object on which the intercepted method is invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.ReturnValue\">\r\n            <summary>\r\n              Gets or sets the return value of the method.\r\n            </summary>\r\n            <value>The return value of the method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.TargetType\">\r\n            <summary>\r\n              Gets the type of the target object for the intercepted method.\r\n            </summary>\r\n            <value>The type of the target object.</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyGenerationHook\">\r\n            <summary>\r\n              Used during the target type inspection process. Implementors have a chance to customize the\r\n              proxy generation process.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.MethodsInspected\">\r\n            <summary>\r\n              Invoked by the generation process to notify that the whole process has completed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.NonProxyableMemberNotification(System.Type,System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to notify that a member was not marked as virtual.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the non-virtual member.</param>\r\n            <param name = \"memberInfo\">The non-virtual member.</param>\r\n            <remarks>\r\n              This method gives an opportunity to inspect any non-proxyable member of a type that has \r\n              been requested to be proxied, and if appropriate - throw an exception to notify the caller.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.ShouldInterceptMethod(System.Type,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to determine if the specified method should be proxied.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the given method.</param>\r\n            <param name = \"methodInfo\">The method to inspect.</param>\r\n            <returns>True if the given method should be proxied; false otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Contributors.ITypeContributor\">\r\n            <summary>\r\n              Interface describing elements composing generated type\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Contributors.MembersCollector.AcceptMethod(System.Reflection.MethodInfo,System.Boolean,Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Performs some basic screening and invokes the <see cref=\"T:Castle.DynamicProxy.IProxyGenerationHook\"/>\r\n              to select methods.\r\n            </summary>\r\n            <param name=\"method\"></param>\r\n            <param name=\"onlyVirtuals\"></param>\r\n            <param name=\"hook\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IAttributeDisassembler\">\r\n            <summary>\r\n              Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by Dynamic Proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IAttributeDisassembler.Disassemble(System.Attribute)\">\r\n            <summary>\r\n              Disassembles given attribute instance back to corresponding CustomAttributeBuilder.\r\n            </summary>\r\n            <param name=\"attribute\">An instance of attribute to disassemble</param>\r\n            <returns><see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> corresponding 1 to 1 to given attribute instance, or null reference.</returns>\r\n            <remarks>\r\n              Implementers should return <see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> that corresponds to given attribute instance 1 to 1,\r\n              that is after calling specified constructor with specified arguments, and setting specified properties and fields with values specified\r\n              we should be able to get an attribute instance identical to the one passed in <paramref name=\"attribute\"/>. Implementer can return null\r\n              if it wishes to opt out of replicating the attribute. Notice however, that for some cases, like attributes passed explicitly by the user\r\n              it is illegal to return null, and doing so will result in exception.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.HandleError(System.Type,System.Exception)\">\r\n            <summary>\r\n              Handles error during disassembly process\r\n            </summary>\r\n            <param name = \"attributeType\">Type of the attribute being disassembled</param>\r\n            <param name = \"exception\">Exception thrown during the process</param>\r\n            <returns>usually null, or (re)throws the exception</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.InitializeConstructorArgs(System.Type,System.Attribute,System.Reflection.ParameterInfo[])\">\r\n            <summary>\r\n              Here we try to match a constructor argument to its value.\r\n              Since we can't get the values from the assembly, we use some heuristics to get it.\r\n              a/ we first try to match all the properties on the attributes by name (case insensitive) to the argument\r\n              b/ if we fail we try to match them by property type, with some smarts about convertions (i,e: can use Guid for string).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ReplaceIfBetterMatch(System.Reflection.ParameterInfo,System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n              We have the following rules here.\r\n              Try to find a matching type, failing that, if the parameter is string, get the first property (under the assumption that\r\n              we can convert it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ConvertValue(System.Object,System.Type)\">\r\n            <summary>\r\n              Attributes can only accept simple types, so we return null for null,\r\n              if the value is passed as string we call to string (should help with converting), \r\n              otherwise, we use the value as is (enums, integer, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Serialization.CacheMappingsAttribute\">\r\n            <summary>\r\n              Applied to the assemblies saved by <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> in order to persist the cache data included in the persisted assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.BaseProxyGenerator\">\r\n            <summary>\r\n              Base class that exposes the common functionalities\r\n              to proxy generation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.AddMappingNoCheck(System.Type,Castle.DynamicProxy.Contributors.ITypeContributor,System.Collections.Generic.IDictionary{System.Type,Castle.DynamicProxy.Contributors.ITypeContributor})\">\r\n            <summary>\r\n              It is safe to add mapping (no mapping for the interface exists)\r\n            </summary>\r\n            <param name = \"implementer\"></param>\r\n            <param name = \"interface\"></param>\r\n            <param name = \"mapping\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.GenerateParameterlessConstructor(Castle.DynamicProxy.Generators.Emitters.ClassEmitter,System.Type,Castle.DynamicProxy.Generators.Emitters.SimpleAST.FieldReference)\">\r\n            <summary>\r\n              Generates a parameters constructor that initializes the proxy\r\n              state with <see cref=\"T:Castle.DynamicProxy.StandardInterceptor\"/> just to make it non-null.\r\n              <para>\r\n                This constructor is important to allow proxies to be XML serializable\r\n              </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.InvocationTypeGenerator.GetBaseCtorArguments(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Reflection.ConstructorInfo@)\">\r\n            <summary>\r\n              Generates the constructor for the class that extends\r\n              <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/>\r\n            </summary>\r\n            <param name=\"targetFieldType\"></param>\r\n            <param name=\"proxyGenerationOptions\"></param>\r\n            <param name=\"baseConstructor\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.DefaultProxyBuilder\">\r\n            <summary>\r\n              Default implementation of <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> interface producing in-memory proxy assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyBuilder\">\r\n            <summary>\r\n              Abstracts the implementation of proxy type construction.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"classToProxy\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"classToProxy\">The class type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified class and interfaces.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.ClassProxyGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type that proxies calls to <paramref name=\"interfaceToProxy\"/> members on <paramref name=\"targetType\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"targetType\">Type implementing <paramref name=\"interfaceToProxy\"/> on which calls to the interface members should be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface that 'proceeds' executions to the specified target.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> and <parmaref name=\"additionalInterfacesToProxy\"/> that delegates all calls to the provided interceptors and allows interceptors to switch the actual target of invocation.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface(s) that delegate all executions to the specified interceptors\r\n              and uses an instance of the interface as their targets (i.e. <see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>), rather than a class. All <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> classes should then implement <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface,\r\n              to allow interceptors to switch invocation target with instance of another type implementing called interface.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetInterfaceGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> that delegates all calls to the provided interceptors.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface and additional interfaces that delegate all executions to the specified interceptors.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithoutTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> logs to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\">\r\n            <summary>\r\n              Gets the <see cref=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\"/> associated with this builder.\r\n            </summary>\r\n            <value>The module scope associated with this builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class with new <see cref=\"P:Castle.DynamicProxy.DefaultProxyBuilder.ModuleScope\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor(Castle.DynamicProxy.ModuleScope)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class.\r\n            </summary>\r\n            <param name=\"scope\">The module scope for generated proxy types.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.AddDisassembler``1(Castle.DynamicProxy.IAttributeDisassembler)\">\r\n            <summary>\r\n              Registers custom disassembler to handle disassembly of specified type of attributes.\r\n            </summary>\r\n            <typeparam name=\"TAttribute\">Type of attributes to handle</typeparam>\r\n            <param name=\"disassembler\">Disassembler converting existing instances of Attributes to CustomAttributeBuilders</param>\r\n            <remarks>\r\n              When disassembling an attribute Dynamic Proxy will first check if an custom disassembler has been registered to handle attributes of that type, \r\n              and if none is found, it'll use the <see cref=\"P:Castle.DynamicProxy.Internal.AttributeUtil.FallbackDisassembler\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.ShouldSkipAttributeReplication(System.Type)\">\r\n            <summary>\r\n              Attributes should be replicated if they are non-inheritable,\r\n              but there are some special cases where the attributes means\r\n              something to the CLR, where they should be skipped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Reflection.MemberInfo,System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Target element. This is either target type or target method for invocation types.</param>\r\n            <param name=\"type\">The type of the proxy. This is base type for invocation types.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Type of the target.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdcOpCodesDictionary\">\r\n            <summary>\r\n              s\r\n              Provides appropriate Ldc.X opcode for the type of primitive value to be loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Ldind.X opcode for \r\n              the type of primitive value to be loaded indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load indirect opcode of the appropriate type for a value or object reference.\r\n              Pops a pointer off the evaluation stack, dereferences it and loads\r\n              a value of the specified type.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForConstantValue(System.Reflection.Emit.ILGenerator,System.Object)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for a constant string or\r\n              primitive value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"value\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForDefaultValueOfType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for the constant default value of a\r\n              type, such as 0 for value types and null for reference types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitStoreIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a store indirectopcode of the appropriate type for a value or object reference.\r\n              Pops a value of the specified type and a pointer off the evaluation stack, and\r\n              stores the value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.PropertiesCollection\">\r\n            <summary>\r\n              Summary description for PropertiesCollection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.IndirectReference\">\r\n            <summary>\r\n              Wraps a reference that is passed \r\n              ByRef and provides indirect load/store support.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.NewArrayExpression\">\r\n            <summary>\r\n              Summary description for NewArrayExpression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.ReferencesToObjectArrayExpression\">\r\n            <summary>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.StindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Stind.X opcode \r\n              for the type of primitive value to be stored indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.TypeUtil.GetAllInterfaces(System.Type[])\">\r\n            <summary>\r\n              Returns list of all unique interfaces implemented given types, including their base interfaces.\r\n            </summary>\r\n            <param name = \"types\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.MetaEvent.#ctor(System.String,System.Type,System.Type,Castle.DynamicProxy.Generators.MetaMethod,Castle.DynamicProxy.Generators.MetaMethod,System.Reflection.EventAttributes)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.MetaEvent\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"declaringType\">Type declaring the original event being overriten, or null.</param>\r\n            <param name=\"eventDelegateType\"></param>\r\n            <param name=\"adder\">The add method.</param>\r\n            <param name=\"remover\">The remove method.</param>\r\n            <param name=\"attributes\">The attributes.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.INamingScope\">\r\n            <summary>\r\n              Represents the scope of uniquenes of names for types and their members\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\">\r\n            <summary>\r\n              Gets a unique name based on <paramref name=\"suggestedName\"/>\r\n            </summary>\r\n            <param name=\"suggestedName\">Name suggested by the caller</param>\r\n            <returns>Unique name based on <paramref name=\"suggestedName\"/>.</returns>\r\n            <remarks>\r\n              Implementers should provide name as closely resembling <paramref name=\"suggestedName\"/> as possible.\r\n              Generally if no collision occurs it is suggested to return suggested name, otherwise append sequential suffix.\r\n              Implementers must return deterministic names, that is when <see cref=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\"/> is called twice \r\n              with the same suggested name, the same returned name should be provided each time. Non-deterministic return\r\n              values, like appending random suffices will break serialization of proxies.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.SafeSubScope\">\r\n            <summary>\r\n              Returns new, disposable naming scope. It is responsibilty of the caller to make sure that no naming collision\r\n              with enclosing scope, or other subscopes is possible.\r\n            </summary>\r\n            <returns>New naming scope.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.MethodFinder\">\r\n            <summary>\r\n              Returns the methods implemented by a type. Use this instead of Type.GetMethods() to work around a CLR issue\r\n              where duplicate MethodInfos are returned by Type.GetMethods() after a token of a generic type's method was loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternal(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Determines whether the specified method is internal.\r\n            </summary>\r\n            <param name = \"method\">The method.</param>\r\n            <returns>\r\n              <c>true</c> if the specified method is internal; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternalToDynamicProxy(System.Reflection.Assembly)\">\r\n            <summary>\r\n              Determines whether this assembly has internals visible to dynamic proxy.\r\n            </summary>\r\n            <param name = \"asm\">The assembly to inspect.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsAccessible(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Checks if the method is public or protected.\r\n            </summary>\r\n            <param name = \"method\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.MixinData.#ctor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n              Because we need to cache the types based on the mixed in mixins, we do the following here:\r\n              - Get all the mixin interfaces\r\n              - Sort them by full name\r\n              - Return them by position\r\n            \r\n            The idea is to have reproducible behavior for the case that mixins are registered in different orders.\r\n            This method is here because it is required \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ModuleScope\">\r\n            <summary>\r\n              Summary description for ModuleScope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\">\r\n            <summary>\r\n              The default file name used when the assembly is saved using <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_ASSEMBLY_NAME\">\r\n            <summary>\r\n              The default assembly (simple) name used for the assemblies generated by a <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class; assemblies created by this instance will not be saved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,Castle.DynamicProxy.Generators.INamingScope,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"namingScope\">Naming scope used to provide unique names to generated types and their members (usually via sub-scopes).</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetFromCache(Castle.DynamicProxy.Generators.CacheKey)\">\r\n            <summary>\r\n              Returns a type from this scope's type cache, or null if the key cannot be found.\r\n            </summary>\r\n            <param name = \"key\">The key to be looked up in the cache.</param>\r\n            <returns>The type from this scope's type cache matching the key, or null if the key cannot be found</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.RegisterInCache(Castle.DynamicProxy.Generators.CacheKey,System.Type)\">\r\n            <summary>\r\n              Registers a type in this scope's type cache.\r\n            </summary>\r\n            <param name = \"key\">The key to be associated with the type.</param>\r\n            <param name = \"type\">The type to be stored in the cache.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetKeyPair\">\r\n            <summary>\r\n              Gets the key pair used to sign the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModule(System.Boolean)\">\r\n            <summary>\r\n              Gets the specified module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <param name = \"isStrongNamed\">If set to true, a strong-named module is returned; otherwise, a weak-named module is returned.</param>\r\n            <returns>A strong-named or weak-named module generated by this scope, as specified by the <paramref\r\n               name = \"isStrongNamed\" /> parameter.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithStrongName\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A strong-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A weak-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\">\r\n            <summary>\r\n              Saves the generated assembly with the name and directory information given when this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance was created (or with\r\n              the <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/> and current directory if none was given).\r\n            </summary>\r\n            <remarks>\r\n              <para>\r\n                This method stores the generated assembly in the directory passed as part of the module information specified when this instance was\r\n                constructed (if any, else the current directory is used). If both a strong-named and a weak-named assembly\r\n                have been generated, it will throw an exception; in this case, use the <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\"/> overload.\r\n              </para>\r\n              <para>\r\n                If this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> was created without indicating that the assembly should be saved, this method does nothing.\r\n              </para>\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidOperationException\">Both a strong-named and a weak-named assembly have been generated.</exception>\r\n            <returns>The path of the generated assembly file, or null if no file has been generated.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\">\r\n            <summary>\r\n              Saves the specified generated assembly with the name and directory information given when this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance was created\r\n              (or with the <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/> and current directory if none was given).\r\n            </summary>\r\n            <param name=\"strongNamed\">True if the generated assembly with a strong name should be saved (see <see cref=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModule\"/>);\r\n              false if the generated assembly without a strong name should be saved (see <see cref=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModule\"/>.</param>\r\n            <remarks>\r\n              <para>\r\n                This method stores the specified generated assembly in the directory passed as part of the module information specified when this instance was\r\n                constructed (if any, else the current directory is used).\r\n              </para>\r\n              <para>\r\n                If this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> was created without indicating that the assembly should be saved, this method does nothing.\r\n              </para>\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidOperationException\">No assembly has been generated that matches the <paramref name=\"strongNamed\"/> parameter.\r\n            </exception>\r\n            <returns>The path of the generated assembly file, or null if no file has been generated.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.LoadAssemblyIntoCache(System.Reflection.Assembly)\">\r\n            <summary>\r\n              Loads the generated types from the given assembly into this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>'s cache.\r\n            </summary>\r\n            <param name=\"assembly\">The assembly to load types from. This assembly must have been saved via <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\"/> or\r\n              <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/>, or it must have the <see cref=\"T:Castle.DynamicProxy.Serialization.CacheMappingsAttribute\"/> manually applied.</param>\r\n            <remarks>\r\n              This method can be used to load previously generated and persisted proxy types from disk into this scope's type cache, eg. in order\r\n              to avoid the performance hit associated with proxy generation.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.Lock\">\r\n            <summary>\r\n              Users of this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> should use this lock when accessing the cache.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModule\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the strongly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the strongly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModuleDirectory\">\r\n            <summary>\r\n              Gets the directory where the strongly named module generated by this scope will be saved, or <see langword=\"null\"/> if the current directory\r\n              is used.\r\n            </summary>\r\n            <value>The directory where the strongly named module generated by this scope will be saved when <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/> is called\r\n              (if this scope was created to save modules).</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModule\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the weakly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the weakly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModuleDirectory\">\r\n            <summary>\r\n              Gets the directory where the weakly named module generated by this scope will be saved, or <see langword=\"null\"/> if the current directory\r\n              is used.\r\n            </summary>\r\n            <value>The directory where the weakly named module generated by this scope will be saved when <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/> is called\r\n              (if this scope was created to save modules).</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.PersistentProxyBuilder\">\r\n            <summary>\r\n              ProxyBuilder that persists the generated type.\r\n            </summary>\r\n            <remarks>\r\n              The saved assembly contains just the last generated type.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.PersistentProxyBuilder.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.PersistentProxyBuilder\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.PersistentProxyBuilder.SaveAssembly\">\r\n            <summary>\r\n              Saves the generated assembly to a physical file. Note that this renders the <see cref=\"T:Castle.DynamicProxy.PersistentProxyBuilder\"/> unusable.\r\n            </summary>\r\n            <returns>The path of the generated assembly file, or null if no assembly has been generated.</returns>\r\n            <remarks>\r\n              This method does not support saving multiple files. If both a signed and an unsigned module have been generated, use the \r\n              respective methods of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor(Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n            <param name=\"hook\">The hook.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ProxyGenerator\">\r\n            <summary>\r\n              Provides proxy objects for classes and interfaces.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor(Castle.DynamicProxy.IProxyBuilder)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n            <param name=\"builder\">Proxy types builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types  on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/>  is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of <paramref name=\"additionalInterfacesToProxy\"/> to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for class proxy with given <paramref name=\"classToProxy\"/> class, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">The base class for proxy type.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The interfaces that proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"targetType\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"targetType\">Actual type that the proxy type will encompass.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target interface for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"interfaceToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy without target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> log to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.ProxyBuilder\">\r\n            <summary>\r\n              Gets the proxy builder instance used to generate proxy types.\r\n            </summary>\r\n            <value>The proxy builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.RemotableInvocation.Proceed\">\r\n            <summary>\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.RemotableInvocation.Method\">\r\n            <summary>\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.RemotableInvocation.MethodInvocationTarget\">\r\n            <summary>\r\n              For interface proxies, this will point to the\r\n              <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\">\r\n            <summary>\r\n              Handles the deserialization of proxies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.ResetScope\">\r\n            <summary>\r\n              Resets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization to a new scope.\r\n            </summary>\r\n            <remarks>\r\n              This is useful for test cases.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.SetScope(Castle.DynamicProxy.ModuleScope)\">\r\n            <summary>\r\n              Resets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization to a given <paramref name=\"scope\"/>.\r\n            </summary>\r\n            <param name=\"scope\">The scope to be used for deserialization.</param>\r\n            <remarks>\r\n              By default, the deserialization process uses a different scope than the rest of the application, which can lead to multiple proxies\r\n              being generated for the same type. By explicitly setting the deserialization scope to the application's scope, this can be avoided.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\">\r\n            <summary>\r\n              Gets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization.\r\n            </summary>\r\n            <value>As <see cref=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\"/> has no way of automatically determining the scope used by the application (and the application\r\n              might use more than one scope at the same time), <see cref=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\"/> uses a dedicated scope instance for deserializing proxy\r\n              types. This instance can be reset and set to a specific value via <see cref=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.ResetScope\"/> and <see cref=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.SetScope(Castle.DynamicProxy.ModuleScope)\"/>.</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Tokens.InvocationMethods\">\r\n            <summary>\r\n              Holds <see cref=\"T:System.Reflection.MethodInfo\"/> objects representing methods of <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Tokens.SerializationInfoMethods\">\r\n            <summary>\r\n              Holds <see cref=\"T:System.Reflection.MethodInfo\"/> objects representing methods of <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Bool\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Boolean)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Int32\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Int32)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Object\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Object)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.GetValue\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.GetValue(System.String,System.Type)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.SetType\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.SetType(System.Type)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptorSelector\">\r\n            <summary>\r\n              Provides an extension point that allows proxies to choose specific interceptors on\r\n              a per method basis.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInterceptorSelector.SelectInterceptors(System.Type,System.Reflection.MethodInfo,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Selects the interceptors that should intercept calls to the given <paramref name=\"method\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type declaring the method to intercept.</param>\r\n            <param name=\"method\">The method that will be intercepted.</param>\r\n            <param name=\"interceptors\">All interceptors registered with the proxy.</param>\r\n            <returns>An array of interceptors to invoke upon calling the <paramref name=\"method\"/>.</returns>\r\n            <remarks>\r\n              This method is called only once per proxy instance, upon the first call to the\r\n              <paramref name=\"method\"/>. Either an empty array or null are valid return values to indicate\r\n              that no interceptor should intercept calls to the method. Although it is not advised, it is\r\n              legal to return other <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations than these provided in\r\n              <paramref name=\"interceptors\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.Lock.Create\">\r\n            <summary>\r\n            Creates a new lock.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderExAccessor\">\r\n            <summary>\r\n            This interface should be implemented by classes\r\n            that are available in a bigger context, exposing\r\n            the container to different areas in the same application.\r\n            <para>\r\n            For example, in Web application, the (global) HttpApplication\r\n            subclasses should implement this interface to expose \r\n            the configured container\r\n            </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IChangeProxyTarget\">\r\n            <summary>\r\n              Exposes means to change target objects of proxies and invocations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeInvocationTarget(System.Object)\">\r\n            <summary>\r\n              Changes the target object (<see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>) of current <see cref=\"T:Castle.DynamicProxy.IInvocation\"/>.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of invocation.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to <see cref=\"P:Castle.DynamicProxy.IInvocation.TargetType\"/>, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeProxyTarget(System.Object)\">\r\n            <summary>\r\n              Permanently changes the target object of the proxy. This does not affect target of the current invocation.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of the proxy.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to proxy's target type, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptor\">\r\n            <summary>\r\n              New interface that is going to be used by DynamicProxy 2\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.DynProxyGetTarget\">\r\n            <summary>\r\n              Get the proxy target (note that null is a valid target!)\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.GetInterceptors\">\r\n            <summary>\r\n              Gets the interceptors for the proxy\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceEnabledComponent\">\r\n            <summary>\r\n            Defines that the implementation wants a \r\n            <see cref=\"T:System.IServiceProvider\"/> in order to \r\n            access other components. The creator must be aware\r\n            that the component might (or might not) implement \r\n            the interface.\r\n            </summary>\r\n            <remarks>\r\n            Used by Castle Project components to, for example, \r\n            gather logging factories\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderEx\">\r\n            <summary>\r\n            Increments <c>IServiceProvider</c> with a generic service resolution operation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLoggerFactory\">\r\n            <summary>\r\n              Provides a factory that can produce either <see cref=\"T:Castle.Core.Logging.ILogger\"/> or\r\n              <see cref=\"T:Castle.Core.Logging.IExtendedLogger\"/> classes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILoggerFactory\">\r\n            <summary>\r\n              Manages the instantiation of <see cref=\"T:Castle.Core.Logging.ILogger\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.TraceLoggerFactory\">\r\n            <summary>\r\n              Used to create the TraceLogger implementation of ILogger interface. See <see cref=\"T:Castle.Core.Logging.TraceLogger\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IContextProperties\">\r\n            <summary>\r\n              Interface for Context Properties implementations\r\n            </summary>\r\n            <remarks>\r\n              <para>\r\n                This interface defines a basic property get set accessor.\r\n              </para>\r\n              <para>\r\n                Based on the ContextPropertiesBase of log4net, by Nicko Cadell.\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IContextProperties.Item(System.String)\">\r\n            <summary>\r\n              Gets or sets the value of a property\r\n            </summary>\r\n            <value>\r\n              The value for the property with the specified key\r\n            </value>\r\n            <remarks>\r\n              <para>\r\n                Gets or sets the value of a property\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogFactory\">\r\n            <summary>\r\n            NullLogFactory used when logging is turned off.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name and LoggerLevel.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <param name = \"level\">Level.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.StreamLoggerFactory\">\r\n            <summary>\r\n              Creates <see cref=\"T:Castle.Core.Logging.StreamLogger\"/> outputing \r\n              to files. The name of the file is derived from the log name\r\n              plus the 'log' extension.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLogger\">\r\n            <summary>\r\n              Provides an interface that supports <see cref=\"T:Castle.Core.Logging.ILogger\"/> and\r\n              allows the storage and retrieval of Contexts. These are supported in\r\n              both log4net and NLog.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILogger\">\r\n            <summary>\r\n              Manages logging.\r\n            </summary>\r\n            <remarks>\r\n              This is a facade for the different logging subsystems.\r\n              It offers a simplified interface that follows IOC patterns\r\n              and a simplified priority/level/severity abstraction.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Create a new child logger.\r\n              The name of the child logger is [current-loggers-name].[passed-in-name]\r\n            </summary>\r\n            <param name=\"loggerName\">The Subname of this logger.</param>\r\n            <returns>The New ILogger instance.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">If the name has an empty element name.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a debug message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.Func{System.String})\">\r\n            <summary>\r\n              Logs an error message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a fatal message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a info message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a warn message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value>True if \"debug\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value>True if \"error\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value>True if \"fatal\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value>True if \"info\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value>True if \"warn\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.GlobalProperties\">\r\n            <summary>\r\n              Exposes the Global Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadProperties\">\r\n            <summary>\r\n              Exposes the Thread Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadStacks\">\r\n            <summary>\r\n              Exposes the Thread Stack of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ConsoleLogger\">\r\n            <summary>\r\n            The Logger sending everything to the standard output streams.\r\n            This is mainly for the cases when you have a utility that\r\n            does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LevelFilteredLogger\">\r\n            <summary>\r\n            The Level Filtered Logger class.  This is a base clase which\r\n            provides a LogLevel attribute and reroutes all functions into\r\n            one Log method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.#ctor\">\r\n            <summary>\r\n              Creates a new <c>LevelFilteredLogger</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InitializeLifetimeService\">\r\n            <summary>\r\n            Keep the instance alive in a remoting scenario\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              Implementors output the log content by implementing this method only.\r\n              Note that exception can be null\r\n            </summary>\r\n            <param name = \"loggerLevel\"></param>\r\n            <param name = \"loggerName\"></param>\r\n            <param name = \"message\"></param>\r\n            <param name = \"exception\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Level\">\r\n            <value>\r\n              The <c>LoggerLevel</c> that this logger\r\n              will be using. Defaults to <c>LoggerLevel.Off</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Name\">\r\n            <value>\r\n              The name that this logger will be using. \r\n              Defaults to <c>String.Empty</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Debug\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Info\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Warn\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Error\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Fatal\"/> bit</value>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c> and the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c>.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              A Common method to log.\r\n            </summary>\r\n            <param name = \"loggerLevel\">The level of logging</param>\r\n            <param name = \"loggerName\">The name of the logger</param>\r\n            <param name = \"message\">The Message</param>\r\n            <param name = \"exception\">The Exception</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns a new <c>ConsoleLogger</c> with the name\r\n              added after this loggers name, with a dot in between.\r\n            </summary>\r\n            <param name = \"loggerName\">The added hierarchical name.</param>\r\n            <returns>A new <c>ConsoleLogger</c>.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.DiagnosticsLogger\">\r\n            <summary>\r\n              The Logger using standart Diagnostics namespace.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String,System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n            <param name=\"source\"><see cref=\"P:System.Diagnostics.EventLog.Source\"/></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String,System.String,System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n            <param name=\"machineName\"><see cref=\"P:System.Diagnostics.EventLog.MachineName\"/></param>\r\n            <param name=\"source\"><see cref=\"P:System.Diagnostics.EventLog.Source\"/></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogger\">\r\n            <summary>\r\n              The Null Logger class.  This is useful for implementations where you need\r\n              to provide a logger to a utility class, but do not want any output from it.\r\n              It also helps when you have a utility that does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns this <c>NullLogger</c>.\r\n            </summary>\r\n            <param name = \"loggerName\">Ignored</param>\r\n            <returns>This ILogger instance.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.GlobalProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadStacks\">\r\n            <summary>\r\n              Returns empty context stacks.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsDebugEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsErrorEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsFatalEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsInfoEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsWarnEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.StreamLogger\">\r\n            <summary>\r\n            The Stream Logger class.  This class can stream log information\r\n            to any stream, it is suitable for storing a log file to disk,\r\n            or to a <c>MemoryStream</c> for testing your components.\r\n            </summary>\r\n            <remarks>\r\n            This logger is not thread safe.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default encoding \r\n              and buffer size. Initial Level is set to Debug.\r\n            </summary>\r\n            <param name = \"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name = \"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default buffer size.\r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding,System.Int32)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c>. \r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n            <param name=\"bufferSize\">\r\n              The buffer size that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.StreamWriter)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with \r\n              Debug as default Level.\r\n            </summary>\r\n            <param name = \"name\">The name of the log.</param>\r\n            <param name = \"writer\">The <c>StreamWriter</c> the log will write to.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.TraceLogger\">\r\n            <summary>\r\n              The TraceLogger sends all logging to the System.Diagnostics.TraceSource\r\n              built into the .net framework.\r\n            </summary>\r\n            <remarks>\r\n              Logging can be configured in the system.diagnostics configuration \r\n              section. \r\n            \r\n              If logger doesn't find a source name with a full match it will\r\n              use source names which match the namespace partially. For example you can\r\n              configure from all castle components by adding a source name with the\r\n              name \"Castle\". \r\n            \r\n              If no portion of the namespace matches the source named \"Default\" will\r\n              be used.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.#ctor(System.String)\">\r\n            <summary>\r\n            Build a new trace logger based on the named TraceSource\r\n            </summary>\r\n            <param name=\"name\">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n            Build a new trace logger based on the named TraceSource\r\n            </summary>\r\n            <param name=\"name\">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>\r\n            <param name=\"level\">The default logging level at which this source should write messages. In almost all cases this\r\n            default value will be overridden in the config file. </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n            Create a new child logger.\r\n            The name of the child logger is [current-loggers-name].[passed-in-name]\r\n            </summary>\r\n            <param name=\"loggerName\">The Subname of this logger.</param>\r\n            <returns>The New ILogger instance.</returns> \r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.AbstractConfiguration\">\r\n            <summary>\r\n              This is an abstract <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> implementation\r\n              that deals with methods that can be abstracted away\r\n              from underlying implementations.\r\n            </summary>\r\n            <remarks>\r\n              <para><b>AbstractConfiguration</b> makes easier to implementers \r\n                to create a new version of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/></para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.IConfiguration\">\r\n            <summary>\r\n            <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> is a interface encapsulating a configuration node\r\n            used to retrieve configuration values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.IConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n            Gets the value of the node and converts it \r\n            into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n            The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Name\">\r\n            <summary>\r\n            Gets the name of the node.\r\n            </summary>\r\n            <value>\r\n            The Name of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of the node.\r\n            </summary>\r\n            <value>\r\n            The Value of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Children\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>\r\n            elements containing all node children.\r\n            </summary>\r\n            <value>The Collection of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Attributes\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.IDictionary\"/> of the configuration attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.AbstractConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n              Gets the value of the node and converts it\r\n              into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n              The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Attributes\">\r\n            <summary>\r\n              Gets node attributes.\r\n            </summary>\r\n            <value>\r\n              All attributes of the node.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Children\">\r\n            <summary>\r\n              Gets all child nodes.\r\n            </summary>\r\n            <value>The <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Name\">\r\n            <summary>\r\n              Gets the name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Value\">\r\n            <summary>\r\n              Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.ConfigurationCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor(System.Collections.Generic.IEnumerable{Castle.Core.Configuration.IConfiguration})\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.MutableConfiguration\">\r\n            <summary>\r\n            Summary description for MutableConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.MutableConfiguration.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Core.Configuration.MutableConfiguration\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.MutableConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n            The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.Deserialize(System.Xml.XmlNode)\">\r\n            <summary>\r\n              Deserializes the specified node into an abstract representation of configuration.\r\n            </summary>\r\n            <param name = \"node\">The node.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.GetConfigValue(System.String)\">\r\n            <summary>\r\n              If a config value is an empty string we return null, this is to keep\r\n              backward compatibility with old code\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Pair`2\">\r\n            <summary>\r\n            General purpose class to represent a standard pair of values. \r\n            </summary>\r\n            <typeparam name=\"TFirst\">Type of the first value</typeparam>\r\n            <typeparam name=\"TSecond\">Type of the second value</typeparam>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Pair`2.#ctor(`0,`1)\">\r\n            <summary>\r\n            Constructs a pair with its values\r\n            </summary>\r\n            <param name=\"first\"></param>\r\n            <param name=\"second\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ProxyServices\">\r\n            <summary>\r\n            List of utility methods related to dynamic proxy operations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ProxyServices.IsDynamicProxy(System.Type)\">\r\n            <summary>\r\n            Determines whether the specified type is a proxy generated by\r\n            DynamicProxy (1 or 2).\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>\r\n            \t<c>true</c> if it is a proxy; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\">\r\n            <summary>\r\n            Readonly implementation of <see cref=\"T:System.Collections.IDictionary\"/> which uses an anonymous object as its source. Uses names of properties as keys, and property values as... well - values. Keys are not case sensitive.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.#ctor(System.Object)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"target\">The target.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n              Adds an element with the provided key and value to the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The <see cref = \"T:System.Object\" /> to use as the key of the element to add.</param>\r\n            <param name = \"value\">The <see cref = \"T:System.Object\" /> to use as the value of the element to add.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">An element with the same key already exists in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Clear\">\r\n            <summary>\r\n              Removes all elements from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n              Determines whether the <see cref = \"T:System.Collections.IDictionary\" /> object contains an element with the specified key.\r\n            </summary>\r\n            <param name = \"key\">The key to locate in the <see cref = \"T:System.Collections.IDictionary\" /> object.</param>\r\n            <returns>\r\n              true if the <see cref = \"T:System.Collections.IDictionary\" /> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n              Removes the element with the specified key from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The key of the element to remove.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IEnumerator\" /> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n              Copies the elements of the <see cref = \"T:System.Collections.ICollection\" /> to an <see cref = \"T:System.Array\" />, starting at a particular <see\r\n               cref = \"T:System.Array\" /> index.\r\n            </summary>\r\n            <param name = \"array\">The one-dimensional <see cref = \"T:System.Array\" /> that is the destination of the elements copied from <see\r\n               cref = \"T:System.Collections.ICollection\" />. The <see cref = \"T:System.Array\" /> must have zero-based indexing.</param>\r\n            <param name = \"index\">The zero-based index in <paramref name = \"array\" /> at which copying begins.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"array\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentOutOfRangeException\">\r\n              <paramref name = \"index\" /> is less than zero. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">\r\n              <paramref name = \"array\" /> is multidimensional.-or- <paramref name = \"index\" /> is equal to or greater than the length of <paramref\r\n               name = \"array\" />.-or- The number of elements in the source <see cref = \"T:System.Collections.ICollection\" /> is greater than the available space from <paramref\r\n               name = \"index\" /> to the end of the destination <paramref name = \"array\" />. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">The type of the source <see cref = \"T:System.Collections.ICollection\" /> cannot be cast automatically to the type of the destination <paramref\r\n               name = \"array\" />. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#GetEnumerator\">\r\n            <summary>\r\n              Returns an <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Read(System.Collections.IDictionary,System.Object)\">\r\n            <summary>\r\n              Reads values of properties from <paramref name = \"valuesAsAnonymousObject\" /> and inserts them into <paramref\r\n               name = \"targetDictionary\" /> using property names as keys.\r\n            </summary>\r\n            <param name = \"targetDictionary\"></param>\r\n            <param name = \"valuesAsAnonymousObject\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Count\">\r\n            <summary>\r\n              Gets the number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n              Gets a value indicating whether access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n              Gets an object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Keys\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Values\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#IsFixedSize\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResource\">\r\n            <summary>\r\n            Represents a 'streamable' resource. Can\r\n            be a file, a resource in an assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader(System.Text.Encoding)\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <param name=\"encoding\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.CreateRelative(System.String)\">\r\n            <summary>\r\n            Returns an instance of <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            created according to the <c>relativePath</c>\r\n            using itself as the root.\r\n            </summary>\r\n            <param name=\"relativePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Resource.IResource.FileBasePath\">\r\n            <summary>\r\n            \r\n            </summary>\r\n            <remarks>\r\n            Only valid for resources that\r\n            can be obtained through relative paths\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.AbstractStreamResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Resource.AbstractStreamResource.createStream\">\r\n            <summary>\r\n            This returns a new stream instance each time it is called.\r\n            It is the responsibility of the caller to dispose of this stream\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResourceFactory\">\r\n            <summary>\r\n            Depicts the contract for resource factories.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Accept(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Used to check whether the resource factory\r\n            is able to deal with the given resource\r\n            identifier.\r\n            </summary>\r\n            <remarks>\r\n            Implementors should return <c>true</c>\r\n            only if the given identifier is supported\r\n            by the resource factory\r\n            </remarks>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri,System.String)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <param name=\"basePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.FileResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.FileResourceFactory\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.StaticContentResource\">\r\n            <summary>\r\n            Adapts a static string content as an <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.UncResource\">\r\n            <summary>\r\n            Enable access to files on network shares\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Smtp.IEmailSender\">\r\n            <summary>\r\n            Email sender abstraction.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n            Sends a mail message.\r\n            </summary>\r\n            <param name=\"from\">From field</param>\r\n            <param name=\"to\">To field</param>\r\n            <param name=\"subject\">E-mail's subject</param>\r\n            <param name=\"messageText\">message's body</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Sends a <see cref=\"T:System.Net.Mail.MailMessage\">message</see>. \r\n            </summary>\r\n            <param name=\"message\"><see cref=\"T:System.Net.Mail.MailMessage\">Message</see> instance</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.Collections.Generic.IEnumerable{System.Net.Mail.MailMessage})\">\r\n            <summary>\r\n            Sends multiple <see cref=\"T:System.Net.Mail.MailMessage\">messages</see>. \r\n            </summary>\r\n            <param name=\"messages\">List of <see cref=\"T:System.Net.Mail.MailMessage\">messages</see></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Smtp.DefaultSmtpSender\">\r\n            <summary>\r\n            Default <see cref=\"T:Castle.Core.Smtp.IEmailSender\"/> implementation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Core.Smtp.DefaultSmtpSender\"/> class based on the <see cref=\"T:System.Net.Mail.SmtpClient\"/> configuration provided in the application configuration file.\r\n            </summary>\r\n            <remarks>\r\n            This constructor is based on the default <see cref=\"T:System.Net.Mail.SmtpClient\"/> configuration in the application configuration file.\r\n            </remarks> \r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.#ctor(System.String)\">\r\n            <summary>\r\n            This service implementation\r\n            requires a host name in order to work\r\n            </summary>\r\n            <param name=\"hostname\">The smtp server name</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Send(System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n            Sends a message. \r\n            </summary>\r\n            <exception cref=\"T:System.ArgumentNullException\">If any of the parameters is null</exception>\r\n            <param name=\"from\">From field</param>\r\n            <param name=\"to\">To field</param>\r\n            <param name=\"subject\">e-mail's subject</param>\r\n            <param name=\"messageText\">message's body</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Send(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Sends a message. \r\n            </summary>\r\n            <exception cref=\"T:System.ArgumentNullException\">If the message is null</exception>\r\n            <param name=\"message\">Message instance</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Configure(System.Net.Mail.SmtpClient)\">\r\n            <summary>\r\n            Configures the sender\r\n            with port information and eventual credential\r\n            informed\r\n            </summary>\r\n            <param name=\"smtpClient\">Message instance</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Port\">\r\n            <summary>\r\n            Gets or sets the port used to \r\n            access the SMTP server\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Hostname\">\r\n            <summary>\r\n            Gets the hostname.\r\n            </summary>\r\n            <value>The hostname.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.AsyncSend\">\r\n            <summary>\r\n            Gets or sets a value which is used to \r\n            configure if emails are going to be sent asynchronously or not.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Timeout\">\r\n            <summary>\r\n            Gets or sets a value that specifies \r\n            the amount of time after which a synchronous Send call times out.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.UseSsl\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the email should be sent using \r\n            a secure communication channel.\r\n            </summary>\r\n            <value><c>true</c> if should use SSL; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Domain\">\r\n            <summary>\r\n            Gets or sets the domain.\r\n            </summary>\r\n            <value>The domain.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.UserName\">\r\n            <summary>\r\n            Gets or sets the name of the user.\r\n            </summary>\r\n            <value>The name of the user.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Password\">\r\n            <summary>\r\n            Gets or sets the password.\r\n            </summary>\r\n            <value>The password.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.HasCredentials\">\r\n            <summary>\r\n            Gets a value indicating whether credentials were informed.\r\n            </summary>\r\n            <value>\r\n            <see langword=\"true\"/> if this instance has credentials; otherwise, <see langword=\"false\"/>.\r\n            </value>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/lib/net40-client/Castle.Core.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Castle.Core</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ReferenceAttribute\">\r\n            <summary>\r\n            Specifies assignment by reference rather than by copying.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IfExistsAttribute\">\r\n            <summary>\r\n            Suppresses any on-demand behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfEmptyAttribute\">\r\n            <summary>\r\n            Removes a property if null or empty string, guid or collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfAttribute\">\r\n            <summary>\r\n            Removes a property if matches value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\">\r\n            <summary>\r\n            Defines the contract for customizing dictionary access.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehavior.Copy\">\r\n            <summary>\r\n            Copies the dictionary behavior.\r\n            </summary>\r\n            <returns>null if should not be copied.  Otherwise copy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.IDictionaryBehavior.ExecutionOrder\">\r\n            <summary>\r\n            Determines relative order to apply related behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter\">\r\n            <summary>\r\n            Defines the contract for updating dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the stored dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>true if the property should be stored.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ICondition\">\r\n            <summary>\r\n            Contract for value matching.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.VolatileAttribute\">\r\n            <summary>\r\n            Indicates that underlying values are changeable and should not be cached.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryInitializer\">\r\n            <summary>\r\n             Contract for dictionary initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"behaviors\">The dictionary behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Abstract implementation of <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Conract for traversing a <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryCreate\">\r\n            <summary>\r\n            Contract for creating additional Dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\">\r\n            <summary>\r\n            Contract for manipulating the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryEdit\">\r\n            <summary>\r\n            Contract for editing the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryNotify\">\r\n            <summary>\r\n            Contract for managing Dictionary adapter notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidate\">\r\n            <summary>\r\n            Contract for validating Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder\">\r\n            <summary>\r\n            Defines the contract for building <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder.BuildBehaviors\">\r\n            <summary>\r\n            Builds the dictionary behaviors.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter\">\r\n            <summary>\r\n            Abstract adapter for the <see cref=\"T:System.Collections.IDictionary\"/> support\r\n            needed by the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n            Adds an element with the provided key and value to the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The <see cref=\"T:System.Object\"></see> to use as the key of the element to add.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"></see> to use as the value of the element to add.</param>\r\n            <exception cref=\"T:System.ArgumentException\">An element with the same key already exists in the <see cref=\"T:System.Collections.IDictionary\"></see> object. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Clear\">\r\n            <summary>\r\n            Removes all elements from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.IDictionary\"></see> object contains an element with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to locate in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</param>\r\n            <returns>\r\n            true if the <see cref=\"T:System.Collections.IDictionary\"></see> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n            Returns an <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n            Removes the element with the specified key from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The key of the element to remove.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n            Copies the elements of the <see cref=\"T:System.Collections.ICollection\"></see> to an <see cref=\"T:System.Array\"></see>, starting at a particular <see cref=\"T:System.Array\"></see> index.\r\n            </summary>\r\n            <param name=\"array\">The one-dimensional <see cref=\"T:System.Array\"></see> that is the destination of the elements copied from <see cref=\"T:System.Collections.ICollection\"></see>. The <see cref=\"T:System.Array\"></see> must have zero-based indexing.</param>\r\n            <param name=\"index\">The zero-based index in array at which copying begins.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">array is null. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">The type of the source <see cref=\"T:System.Collections.ICollection\"></see> cannot be cast automatically to the type of the destination array. </exception>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">index is less than zero. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source <see cref=\"T:System.Collections.ICollection\"></see> is greater than the available space from index to the end of the destination array. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"></see> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsFixedSize\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Keys\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Values\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Count\">\r\n            <summary>\r\n            Gets the number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n            Gets a value indicating whether access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n            Gets an object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.BindingList`1\">\r\n            <summary>\r\n              Provides a generic collection that supports data binding.\r\n            </summary>\r\n            <remarks>\r\n              This class wraps the CLR <see cref=\"T:System.ComponentModel.BindingList`1\"/>\r\n              in order to implement the Castle-specific <see cref=\"T:Castle.Components.DictionaryAdapter.IBindingList`1\"/>.\r\n            </remarks>\r\n            <typeparam name=\"T\">The type of elements in the list.</typeparam>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              using default values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.Collections.Generic.IList{`0})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              with the specified list.\r\n            </summary>\r\n            <param name=\"list\">\r\n              An <see cref=\"T:System.Collections.Generic.IList`1\"/> of items\r\n              to be contained in the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.BindingList`1.#ctor(System.ComponentModel.BindingList{`0})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/> class\r\n              wrapping the specified <see cref=\"T:System.ComponentModel.BindingList`1\"/> instance.\r\n            </summary>\r\n            <param name=\"list\">\r\n              A <see cref=\"T:System.ComponentModel.BindingList`1\"/>\r\n              to be wrapped by the <see cref=\"T:Castle.Components.DictionaryAdapter.BindingList`1\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter\">\r\n            <summary>\r\n            Defines the contract for retrieving dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.Xml.XmlAdapter.#ctor(Castle.Components.DictionaryAdapter.Xml.IXmlNode,Castle.Components.DictionaryAdapter.Xml.XmlReferenceManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.Xml.XmlAdapter\"/> class\r\n            that represents a child object in a larger object graph.\r\n            </summary>\r\n            <param name=\"node\"></param>\r\n            <param name=\"references\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer\">\r\n            <summary>\r\n             Contract for dictionary meta-data initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory,Castle.Components.DictionaryAdapter.DictionaryAdapterMeta)\">\r\n            <summary>\r\n            Performs any initialization of the dictionary adapter meta-data.\r\n            </summary>\r\n            <param name=\"factory\">The dictionary adapter factory.</param>\r\n            <param name=\"dictionaryMeta\">The dictionary adapter meta.</param>\r\n            \r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.CollectionExtensions.IsNullOrEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n              Checks whether or not collection is null or empty. Assumes colleciton can be safely enumerated multiple times.\r\n            </summary>\r\n            <param name = \"this\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToCastleCore\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to Castle.Core \r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToCastleCore)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToDynamicProxyGenAssembly2\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to proxy types generated by DynamicProxy. Required when proxying internal types.\r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToDynamicProxyGenAssembly2)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ComponentAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a nested component.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Builds the specified key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The current key.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>The updated key</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.NoPrefix\">\r\n            <summary>\r\n            Applies no prefix.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.Prefix\">\r\n            <summary>\r\n            Gets or sets the prefix.\r\n            </summary>\r\n            <value>The prefix.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterAttribute\">\r\n            <summary>\r\n            Identifies the dictionary adapter types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.FetchAttribute\">\r\n            <summary>\r\n            Identifies an interface or property to be pre-fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor\">\r\n            <summary>\r\n            Instructs fetching to occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Instructs fetching according to <paramref name=\"fetch\"/>\r\n            </summary>\r\n            <param name=\"fetch\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.FetchAttribute.Fetch\">\r\n            <summary>\r\n            Gets whether or not fetching should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.GroupAttribute\">\r\n            <summary>\r\n            Assigns a property to a group.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.GroupAttribute.Group\">\r\n            <summary>\r\n            Gets the group the property is assigned to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"key\">The key.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keys\">The compound key.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties of an interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a default instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keyPrefix\">The prefix for the keyed properties of the interface.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.KeyPrefix\">\r\n            <summary>\r\n            Gets the prefix key added to the properties of the interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\">\r\n            <summary>\r\n            Substitutes part of key with another string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute.#ctor(System.String,System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"oldValue\">The old value.</param>\r\n            <param name=\"newValue\">The new value.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.MultiLevelEditAttribute\">\r\n            <summary>\r\n            Requests support for multi-level editing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.NewGuidAttribute\">\r\n            <summary>\r\n            Generates a new GUID on demand.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.OnDemandAttribute\">\r\n            <summary>\r\n            Support for on-demand value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropagateNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringFormatAttribute\">\r\n            <summary>\r\n            Provides simple string formatting from existing properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Format\">\r\n            <summary>\r\n            Gets the string format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Properties\">\r\n            <summary>\r\n            Gets the format properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringListAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a delimited string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringListAttribute.Separator\">\r\n            <summary>\r\n            Gets the separator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringValuesAttribute\">\r\n            <summary>\r\n            Converts all properties to strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringValuesAttribute.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.SuppressNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer\">\r\n            <summary>\r\n             Contract for property descriptor initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer.Initialize(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"propertyDescriptor\">The property descriptor.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.TypeKeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties using the interface name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\">\r\n            <summary>\r\n            Manages conversion between property values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.#ctor(System.ComponentModel.TypeConverter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\"/> class.\r\n            </summary>\r\n            <param name=\"converter\">The converter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\">\r\n            <summary>\r\n            Uses Reflection.Emit to expose the properties of a dictionary\r\n            through a dynamic implementation of a typed interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.Specialized.NameValueCollection\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"nameValues\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the namedValues.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.Specialized.NameValueCollection\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"nameValues\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the namedValues.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Xml.XmlNode\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"xmlNode\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the <see cref=\"T:System.Xml.XmlNode\"/>.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Xml.XmlNode\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"xmlNode\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the <see cref=\"T:System.Xml.XmlNode\"/>.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``2(System.Collections.Generic.IDictionary{System.String,``1})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Type,System.Collections.Generic.IDictionary{System.String,``0})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.Specialized.NameValueCollection)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.Specialized.NameValueCollection)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Xml.XmlNode)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Xml.XmlNode)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\">\r\n            <summary>\r\n            Describes a dictionary property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor\">\r\n            <summary>\r\n            Initializes an empty <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Reflection.PropertyInfo,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n             Copies an existinginstance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"source\"></param>\r\n            <param name=\"copyBehaviors\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilder(Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder[])\">\r\n            <summary>\r\n            Adds the key builder.\r\n            </summary>\r\n            <param name=\"builders\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilders(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder})\">\r\n            <summary>\r\n            Adds the key builders.\r\n            </summary>\r\n            <param name=\"builders\">The builders.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyKeyBuilders(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the key builders to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetter(Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter[])\">\r\n            <summary>\r\n            Adds the dictionary getter.\r\n            </summary>\r\n            <param name=\"getters\">The getter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter})\">\r\n            <summary>\r\n            Adds the dictionary getters.\r\n            </summary>\r\n            <param name=\"gets\">The getters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyGetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property getters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetter(Castle.Components.DictionaryAdapter.IDictionaryPropertySetter[])\">\r\n            <summary>\r\n            Adds the dictionary setter.\r\n            </summary>\r\n            <param name=\"setters\">The setter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertySetter})\">\r\n            <summary>\r\n            Adds the dictionary setters.\r\n            </summary>\r\n            <param name=\"sets\">The setters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopySetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property setters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehavior(Castle.Components.DictionaryAdapter.IDictionaryBehavior[])\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryBehavior})\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder[])\">\r\n            <summary>\r\n            Adds the behaviors from the builders.\r\n            </summary>\r\n            <param name=\"builders\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyBehaviors(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the behaviors to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.Copy\">\r\n            <summary>\r\n            Copies the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyName\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            Gets the property type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Property\">\r\n            <summary>\r\n            Gets the property.\r\n            </summary>\r\n            <value>The property.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IsDynamicProperty\">\r\n            <summary>\r\n            Returns true if the property is dynamic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.State\">\r\n            <summary>\r\n            Gets additional state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Fetch\">\r\n            <summary>\r\n            Determines if property should be fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IfExists\">\r\n            <summary>\r\n            Determines if property must exist first.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.SuppressNotifications\">\r\n            <summary>\r\n            Determines if notifications should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Behaviors\">\r\n            <summary>\r\n            Gets the property behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.TypeConverter\">\r\n            <summary>\r\n            Gets the type converter.\r\n            </summary>\r\n            <value>The type converter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExtendedProperties\">\r\n            <summary>\r\n            Gets the extended properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.KeyBuilders\">\r\n            <summary>\r\n            Gets the key builders.\r\n            </summary>\r\n            <value>The key builders.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Setters\">\r\n            <summary>\r\n            Gets the setter.\r\n            </summary>\r\n            <value>The setter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Getters\">\r\n            <summary>\r\n            Gets the getter.\r\n            </summary>\r\n            <value>The getter.</value>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializer(Castle.Components.DictionaryAdapter.IDictionaryInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryInitializer})\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializer(Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer})\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyMetaInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the meta-initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.Initializers\">\r\n            <summary>\r\n            Gets the initializers.\r\n            </summary>\r\n            <value>The initializers.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.MetaInitializers\">\r\n            <summary>\r\n            Gets the meta-data initializers.\r\n            </summary>\r\n            <value>The meta-data initializers.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidator\">\r\n            <summary>\r\n            Contract for dictionary validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.IsValid(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Determines if <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> is valid.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>true if valid.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>The error summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> for a property.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"property\">The property to validate.</param>\r\n            <returns>The property summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Invalidate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Invalidates any results cached by the validator.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.#ctor(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"nameValues\">The name values.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Contains(System.Object)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.IDictionary\"></see> object contains an element with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to locate in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</param>\r\n            <returns>\r\n            true if the <see cref=\"T:System.Collections.IDictionary\"></see> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Adapt(System.Collections.Specialized.NameValueCollection)\">\r\n            <summary>\r\n            Adapts the specified name values.\r\n            </summary>\r\n            <param name=\"nameValues\">The name values.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.IsReadOnly\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.NameValueCollectionAdapter.Item(System.Object)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Internal.AttributesUtil\">\r\n            <summary>\r\n              Helper class for retrieving attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttributes``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attributes. Does not consider inherited attributes!\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttribute``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attribute.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttributes``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attributes.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeConverter(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Gets the type converter.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.HasAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue`1\">\r\n            <summary>\r\n            Contract for typed dynamic value resolution.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue\">\r\n            <summary>\r\n            Contract for dynamic value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LoggerLevel\">\r\n            <summary>\r\n              Supporting Logger levels.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Off\">\r\n            <summary>\r\n              Logging will be off\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Fatal\">\r\n            <summary>\r\n              Fatal logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Error\">\r\n            <summary>\r\n              Error logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Warn\">\r\n            <summary>\r\n              Warn logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Info\">\r\n            <summary>\r\n              Info logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Debug\">\r\n            <summary>\r\n              Debug logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInvocation\">\r\n            <summary>\r\n              Encapsulates an invocation of a proxied method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetArgumentValue(System.Int32)\">\r\n            <summary>\r\n              Gets the value of the argument at the specified <paramref name = \"index\" />.\r\n            </summary>\r\n            <param name = \"index\">The index.</param>\r\n            <returns>The value of the argument at the specified <paramref name = \"index\" />.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethod\">\r\n            <summary>\r\n              Returns the concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, with any generic\r\n              parameters bound to real types.\r\n            </summary>\r\n            <returns>\r\n              The concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, or the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> if\r\n              not a generic method.\r\n            </returns>\r\n            <remarks>\r\n              Can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethodInvocationTarget\">\r\n            <summary>\r\n              Returns the concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, with any\r\n              generic parameters bound to real types.\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <returns>The concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, or\r\n              <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/> if not a generic method.</returns>\r\n            <remarks>\r\n              In debug builds this can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.Proceed\">\r\n            <summary>\r\n              Proceeds the call to the next interceptor in line, and ultimately to the target method.\r\n            </summary>\r\n            <remarks>\r\n              Since interface proxies without a target don't have the target implementation to proceed to,\r\n              it is important, that the last interceptor does not call this method, otherwise a\r\n              <see cref=\"T:System.NotImplementedException\"/> will be thrown.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n              Overrides the value of an argument at the given <paramref name=\"index\"/> with the\r\n              new <paramref name=\"value\"/> provided.\r\n            </summary>\r\n            <remarks>\r\n              This method accepts an <see cref=\"T:System.Object\"/>, however the value provided must be compatible\r\n              with the type of the argument defined on the method, otherwise an exception will be thrown.\r\n            </remarks>\r\n            <param name=\"index\">The index of the argument to override.</param>\r\n            <param name=\"value\">The new value for the argument.</param>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Arguments\">\r\n            <summary>\r\n              Gets the arguments that the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> has been invoked with.\r\n            </summary>\r\n            <value>The arguments the method was invoked with.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.GenericArguments\">\r\n            <summary>\r\n              Gets the generic arguments of the method.\r\n            </summary>\r\n            <value>The generic arguments, or null if not a generic method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\">\r\n            <summary>\r\n              Gets the object on which the invocation is performed. This is different from proxy object\r\n              because most of the time this will be the proxy target object.\r\n            </summary>\r\n            <seealso cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/>\r\n            <value>The invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Method\">\r\n            <summary>\r\n              Gets the <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked on the proxy.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\">\r\n            <summary>\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <value>The method invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Proxy\">\r\n            <summary>\r\n              Gets the proxy object on which the intercepted method is invoked.\r\n            </summary>\r\n            <value>Proxy object on which the intercepted method is invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.ReturnValue\">\r\n            <summary>\r\n              Gets or sets the return value of the method.\r\n            </summary>\r\n            <value>The return value of the method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.TargetType\">\r\n            <summary>\r\n              Gets the type of the target object for the intercepted method.\r\n            </summary>\r\n            <value>The type of the target object.</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyGenerationHook\">\r\n            <summary>\r\n              Used during the target type inspection process. Implementors have a chance to customize the\r\n              proxy generation process.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.MethodsInspected\">\r\n            <summary>\r\n              Invoked by the generation process to notify that the whole process has completed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.NonProxyableMemberNotification(System.Type,System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to notify that a member was not marked as virtual.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the non-virtual member.</param>\r\n            <param name = \"memberInfo\">The non-virtual member.</param>\r\n            <remarks>\r\n              This method gives an opportunity to inspect any non-proxyable member of a type that has \r\n              been requested to be proxied, and if appropriate - throw an exception to notify the caller.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.ShouldInterceptMethod(System.Type,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to determine if the specified method should be proxied.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the given method.</param>\r\n            <param name = \"methodInfo\">The method to inspect.</param>\r\n            <returns>True if the given method should be proxied; false otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Contributors.ITypeContributor\">\r\n            <summary>\r\n              Interface describing elements composing generated type\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Contributors.MembersCollector.AcceptMethod(System.Reflection.MethodInfo,System.Boolean,Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Performs some basic screening and invokes the <see cref=\"T:Castle.DynamicProxy.IProxyGenerationHook\"/>\r\n              to select methods.\r\n            </summary>\r\n            <param name=\"method\"></param>\r\n            <param name=\"onlyVirtuals\"></param>\r\n            <param name=\"hook\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IAttributeDisassembler\">\r\n            <summary>\r\n              Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by Dynamic Proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IAttributeDisassembler.Disassemble(System.Attribute)\">\r\n            <summary>\r\n              Disassembles given attribute instance back to corresponding CustomAttributeBuilder.\r\n            </summary>\r\n            <param name=\"attribute\">An instance of attribute to disassemble</param>\r\n            <returns><see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> corresponding 1 to 1 to given attribute instance, or null reference.</returns>\r\n            <remarks>\r\n              Implementers should return <see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> that corresponds to given attribute instance 1 to 1,\r\n              that is after calling specified constructor with specified arguments, and setting specified properties and fields with values specified\r\n              we should be able to get an attribute instance identical to the one passed in <paramref name=\"attribute\"/>. Implementer can return null\r\n              if it wishes to opt out of replicating the attribute. Notice however, that for some cases, like attributes passed explicitly by the user\r\n              it is illegal to return null, and doing so will result in exception.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.HandleError(System.Type,System.Exception)\">\r\n            <summary>\r\n              Handles error during disassembly process\r\n            </summary>\r\n            <param name = \"attributeType\">Type of the attribute being disassembled</param>\r\n            <param name = \"exception\">Exception thrown during the process</param>\r\n            <returns>usually null, or (re)throws the exception</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.InitializeConstructorArgs(System.Type,System.Attribute,System.Reflection.ParameterInfo[])\">\r\n            <summary>\r\n              Here we try to match a constructor argument to its value.\r\n              Since we can't get the values from the assembly, we use some heuristics to get it.\r\n              a/ we first try to match all the properties on the attributes by name (case insensitive) to the argument\r\n              b/ if we fail we try to match them by property type, with some smarts about convertions (i,e: can use Guid for string).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ReplaceIfBetterMatch(System.Reflection.ParameterInfo,System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n              We have the following rules here.\r\n              Try to find a matching type, failing that, if the parameter is string, get the first property (under the assumption that\r\n              we can convert it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ConvertValue(System.Object,System.Type)\">\r\n            <summary>\r\n              Attributes can only accept simple types, so we return null for null,\r\n              if the value is passed as string we call to string (should help with converting), \r\n              otherwise, we use the value as is (enums, integer, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Serialization.CacheMappingsAttribute\">\r\n            <summary>\r\n              Applied to the assemblies saved by <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> in order to persist the cache data included in the persisted assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.BaseProxyGenerator\">\r\n            <summary>\r\n              Base class that exposes the common functionalities\r\n              to proxy generation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.AddMappingNoCheck(System.Type,Castle.DynamicProxy.Contributors.ITypeContributor,System.Collections.Generic.IDictionary{System.Type,Castle.DynamicProxy.Contributors.ITypeContributor})\">\r\n            <summary>\r\n              It is safe to add mapping (no mapping for the interface exists)\r\n            </summary>\r\n            <param name = \"implementer\"></param>\r\n            <param name = \"interface\"></param>\r\n            <param name = \"mapping\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.GenerateParameterlessConstructor(Castle.DynamicProxy.Generators.Emitters.ClassEmitter,System.Type,Castle.DynamicProxy.Generators.Emitters.SimpleAST.FieldReference)\">\r\n            <summary>\r\n              Generates a parameters constructor that initializes the proxy\r\n              state with <see cref=\"T:Castle.DynamicProxy.StandardInterceptor\"/> just to make it non-null.\r\n              <para>\r\n                This constructor is important to allow proxies to be XML serializable\r\n              </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.InvocationTypeGenerator.GetBaseCtorArguments(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Reflection.ConstructorInfo@)\">\r\n            <summary>\r\n              Generates the constructor for the class that extends\r\n              <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/>\r\n            </summary>\r\n            <param name=\"targetFieldType\"></param>\r\n            <param name=\"proxyGenerationOptions\"></param>\r\n            <param name=\"baseConstructor\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.DefaultProxyBuilder\">\r\n            <summary>\r\n              Default implementation of <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> interface producing in-memory proxy assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyBuilder\">\r\n            <summary>\r\n              Abstracts the implementation of proxy type construction.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"classToProxy\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"classToProxy\">The class type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified class and interfaces.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.ClassProxyGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type that proxies calls to <paramref name=\"interfaceToProxy\"/> members on <paramref name=\"targetType\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"targetType\">Type implementing <paramref name=\"interfaceToProxy\"/> on which calls to the interface members should be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface that 'proceeds' executions to the specified target.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> and <parmaref name=\"additionalInterfacesToProxy\"/> that delegates all calls to the provided interceptors and allows interceptors to switch the actual target of invocation.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface(s) that delegate all executions to the specified interceptors\r\n              and uses an instance of the interface as their targets (i.e. <see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>), rather than a class. All <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> classes should then implement <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface,\r\n              to allow interceptors to switch invocation target with instance of another type implementing called interface.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetInterfaceGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> that delegates all calls to the provided interceptors.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface and additional interfaces that delegate all executions to the specified interceptors.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithoutTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> logs to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\">\r\n            <summary>\r\n              Gets the <see cref=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\"/> associated with this builder.\r\n            </summary>\r\n            <value>The module scope associated with this builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class with new <see cref=\"P:Castle.DynamicProxy.DefaultProxyBuilder.ModuleScope\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor(Castle.DynamicProxy.ModuleScope)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class.\r\n            </summary>\r\n            <param name=\"scope\">The module scope for generated proxy types.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.AddDisassembler``1(Castle.DynamicProxy.IAttributeDisassembler)\">\r\n            <summary>\r\n              Registers custom disassembler to handle disassembly of specified type of attributes.\r\n            </summary>\r\n            <typeparam name=\"TAttribute\">Type of attributes to handle</typeparam>\r\n            <param name=\"disassembler\">Disassembler converting existing instances of Attributes to CustomAttributeBuilders</param>\r\n            <remarks>\r\n              When disassembling an attribute Dynamic Proxy will first check if an custom disassembler has been registered to handle attributes of that type, \r\n              and if none is found, it'll use the <see cref=\"P:Castle.DynamicProxy.Internal.AttributeUtil.FallbackDisassembler\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.ShouldSkipAttributeReplication(System.Type)\">\r\n            <summary>\r\n              Attributes should be replicated if they are non-inheritable,\r\n              but there are some special cases where the attributes means\r\n              something to the CLR, where they should be skipped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Reflection.MemberInfo,System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Target element. This is either target type or target method for invocation types.</param>\r\n            <param name=\"type\">The type of the proxy. This is base type for invocation types.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Type of the target.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdcOpCodesDictionary\">\r\n            <summary>\r\n              s\r\n              Provides appropriate Ldc.X opcode for the type of primitive value to be loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Ldind.X opcode for \r\n              the type of primitive value to be loaded indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load indirect opcode of the appropriate type for a value or object reference.\r\n              Pops a pointer off the evaluation stack, dereferences it and loads\r\n              a value of the specified type.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForConstantValue(System.Reflection.Emit.ILGenerator,System.Object)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for a constant string or\r\n              primitive value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"value\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForDefaultValueOfType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for the constant default value of a\r\n              type, such as 0 for value types and null for reference types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitStoreIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a store indirectopcode of the appropriate type for a value or object reference.\r\n              Pops a value of the specified type and a pointer off the evaluation stack, and\r\n              stores the value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.PropertiesCollection\">\r\n            <summary>\r\n              Summary description for PropertiesCollection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.IndirectReference\">\r\n            <summary>\r\n              Wraps a reference that is passed \r\n              ByRef and provides indirect load/store support.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.NewArrayExpression\">\r\n            <summary>\r\n              Summary description for NewArrayExpression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.ReferencesToObjectArrayExpression\">\r\n            <summary>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.StindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Stind.X opcode \r\n              for the type of primitive value to be stored indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.TypeUtil.GetAllInterfaces(System.Type[])\">\r\n            <summary>\r\n              Returns list of all unique interfaces implemented given types, including their base interfaces.\r\n            </summary>\r\n            <param name = \"types\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.MetaEvent.#ctor(System.String,System.Type,System.Type,Castle.DynamicProxy.Generators.MetaMethod,Castle.DynamicProxy.Generators.MetaMethod,System.Reflection.EventAttributes)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.MetaEvent\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"declaringType\">Type declaring the original event being overriten, or null.</param>\r\n            <param name=\"eventDelegateType\"></param>\r\n            <param name=\"adder\">The add method.</param>\r\n            <param name=\"remover\">The remove method.</param>\r\n            <param name=\"attributes\">The attributes.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.INamingScope\">\r\n            <summary>\r\n              Represents the scope of uniquenes of names for types and their members\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\">\r\n            <summary>\r\n              Gets a unique name based on <paramref name=\"suggestedName\"/>\r\n            </summary>\r\n            <param name=\"suggestedName\">Name suggested by the caller</param>\r\n            <returns>Unique name based on <paramref name=\"suggestedName\"/>.</returns>\r\n            <remarks>\r\n              Implementers should provide name as closely resembling <paramref name=\"suggestedName\"/> as possible.\r\n              Generally if no collision occurs it is suggested to return suggested name, otherwise append sequential suffix.\r\n              Implementers must return deterministic names, that is when <see cref=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\"/> is called twice \r\n              with the same suggested name, the same returned name should be provided each time. Non-deterministic return\r\n              values, like appending random suffices will break serialization of proxies.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.SafeSubScope\">\r\n            <summary>\r\n              Returns new, disposable naming scope. It is responsibilty of the caller to make sure that no naming collision\r\n              with enclosing scope, or other subscopes is possible.\r\n            </summary>\r\n            <returns>New naming scope.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.MethodFinder\">\r\n            <summary>\r\n              Returns the methods implemented by a type. Use this instead of Type.GetMethods() to work around a CLR issue\r\n              where duplicate MethodInfos are returned by Type.GetMethods() after a token of a generic type's method was loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternal(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Determines whether the specified method is internal.\r\n            </summary>\r\n            <param name = \"method\">The method.</param>\r\n            <returns>\r\n              <c>true</c> if the specified method is internal; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternalToDynamicProxy(System.Reflection.Assembly)\">\r\n            <summary>\r\n              Determines whether this assembly has internals visible to dynamic proxy.\r\n            </summary>\r\n            <param name = \"asm\">The assembly to inspect.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsAccessible(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Checks if the method is public or protected.\r\n            </summary>\r\n            <param name = \"method\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.MixinData.#ctor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n              Because we need to cache the types based on the mixed in mixins, we do the following here:\r\n              - Get all the mixin interfaces\r\n              - Sort them by full name\r\n              - Return them by position\r\n            \r\n            The idea is to have reproducible behavior for the case that mixins are registered in different orders.\r\n            This method is here because it is required \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ModuleScope\">\r\n            <summary>\r\n              Summary description for ModuleScope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\">\r\n            <summary>\r\n              The default file name used when the assembly is saved using <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_ASSEMBLY_NAME\">\r\n            <summary>\r\n              The default assembly (simple) name used for the assemblies generated by a <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class; assemblies created by this instance will not be saved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,Castle.DynamicProxy.Generators.INamingScope,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"namingScope\">Naming scope used to provide unique names to generated types and their members (usually via sub-scopes).</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetFromCache(Castle.DynamicProxy.Generators.CacheKey)\">\r\n            <summary>\r\n              Returns a type from this scope's type cache, or null if the key cannot be found.\r\n            </summary>\r\n            <param name = \"key\">The key to be looked up in the cache.</param>\r\n            <returns>The type from this scope's type cache matching the key, or null if the key cannot be found</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.RegisterInCache(Castle.DynamicProxy.Generators.CacheKey,System.Type)\">\r\n            <summary>\r\n              Registers a type in this scope's type cache.\r\n            </summary>\r\n            <param name = \"key\">The key to be associated with the type.</param>\r\n            <param name = \"type\">The type to be stored in the cache.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetKeyPair\">\r\n            <summary>\r\n              Gets the key pair used to sign the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModule(System.Boolean)\">\r\n            <summary>\r\n              Gets the specified module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <param name = \"isStrongNamed\">If set to true, a strong-named module is returned; otherwise, a weak-named module is returned.</param>\r\n            <returns>A strong-named or weak-named module generated by this scope, as specified by the <paramref\r\n               name = \"isStrongNamed\" /> parameter.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithStrongName\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A strong-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A weak-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\">\r\n            <summary>\r\n              Saves the generated assembly with the name and directory information given when this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance was created (or with\r\n              the <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/> and current directory if none was given).\r\n            </summary>\r\n            <remarks>\r\n              <para>\r\n                This method stores the generated assembly in the directory passed as part of the module information specified when this instance was\r\n                constructed (if any, else the current directory is used). If both a strong-named and a weak-named assembly\r\n                have been generated, it will throw an exception; in this case, use the <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\"/> overload.\r\n              </para>\r\n              <para>\r\n                If this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> was created without indicating that the assembly should be saved, this method does nothing.\r\n              </para>\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidOperationException\">Both a strong-named and a weak-named assembly have been generated.</exception>\r\n            <returns>The path of the generated assembly file, or null if no file has been generated.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\">\r\n            <summary>\r\n              Saves the specified generated assembly with the name and directory information given when this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance was created\r\n              (or with the <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/> and current directory if none was given).\r\n            </summary>\r\n            <param name=\"strongNamed\">True if the generated assembly with a strong name should be saved (see <see cref=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModule\"/>);\r\n              false if the generated assembly without a strong name should be saved (see <see cref=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModule\"/>.</param>\r\n            <remarks>\r\n              <para>\r\n                This method stores the specified generated assembly in the directory passed as part of the module information specified when this instance was\r\n                constructed (if any, else the current directory is used).\r\n              </para>\r\n              <para>\r\n                If this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> was created without indicating that the assembly should be saved, this method does nothing.\r\n              </para>\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidOperationException\">No assembly has been generated that matches the <paramref name=\"strongNamed\"/> parameter.\r\n            </exception>\r\n            <returns>The path of the generated assembly file, or null if no file has been generated.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.LoadAssemblyIntoCache(System.Reflection.Assembly)\">\r\n            <summary>\r\n              Loads the generated types from the given assembly into this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>'s cache.\r\n            </summary>\r\n            <param name=\"assembly\">The assembly to load types from. This assembly must have been saved via <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly(System.Boolean)\"/> or\r\n              <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/>, or it must have the <see cref=\"T:Castle.DynamicProxy.Serialization.CacheMappingsAttribute\"/> manually applied.</param>\r\n            <remarks>\r\n              This method can be used to load previously generated and persisted proxy types from disk into this scope's type cache, eg. in order\r\n              to avoid the performance hit associated with proxy generation.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.Lock\">\r\n            <summary>\r\n              Users of this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> should use this lock when accessing the cache.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModule\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the strongly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the strongly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModuleDirectory\">\r\n            <summary>\r\n              Gets the directory where the strongly named module generated by this scope will be saved, or <see langword=\"null\"/> if the current directory\r\n              is used.\r\n            </summary>\r\n            <value>The directory where the strongly named module generated by this scope will be saved when <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/> is called\r\n              (if this scope was created to save modules).</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModule\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the weakly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the weakly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModuleDirectory\">\r\n            <summary>\r\n              Gets the directory where the weakly named module generated by this scope will be saved, or <see langword=\"null\"/> if the current directory\r\n              is used.\r\n            </summary>\r\n            <value>The directory where the weakly named module generated by this scope will be saved when <see cref=\"M:Castle.DynamicProxy.ModuleScope.SaveAssembly\"/> is called\r\n              (if this scope was created to save modules).</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.PersistentProxyBuilder\">\r\n            <summary>\r\n              ProxyBuilder that persists the generated type.\r\n            </summary>\r\n            <remarks>\r\n              The saved assembly contains just the last generated type.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.PersistentProxyBuilder.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.PersistentProxyBuilder\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.PersistentProxyBuilder.SaveAssembly\">\r\n            <summary>\r\n              Saves the generated assembly to a physical file. Note that this renders the <see cref=\"T:Castle.DynamicProxy.PersistentProxyBuilder\"/> unusable.\r\n            </summary>\r\n            <returns>The path of the generated assembly file, or null if no assembly has been generated.</returns>\r\n            <remarks>\r\n              This method does not support saving multiple files. If both a signed and an unsigned module have been generated, use the \r\n              respective methods of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor(Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n            <param name=\"hook\">The hook.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ProxyGenerator\">\r\n            <summary>\r\n              Provides proxy objects for classes and interfaces.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor(Castle.DynamicProxy.IProxyBuilder)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n            <param name=\"builder\">Proxy types builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types  on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/>  is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of <paramref name=\"additionalInterfacesToProxy\"/> to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for class proxy with given <paramref name=\"classToProxy\"/> class, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">The base class for proxy type.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The interfaces that proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"targetType\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"targetType\">Actual type that the proxy type will encompass.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target interface for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"interfaceToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy without target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> log to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.ProxyBuilder\">\r\n            <summary>\r\n              Gets the proxy builder instance used to generate proxy types.\r\n            </summary>\r\n            <value>The proxy builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.RemotableInvocation.Proceed\">\r\n            <summary>\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.RemotableInvocation.Method\">\r\n            <summary>\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.RemotableInvocation.MethodInvocationTarget\">\r\n            <summary>\r\n              For interface proxies, this will point to the\r\n              <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\">\r\n            <summary>\r\n              Handles the deserialization of proxies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.ResetScope\">\r\n            <summary>\r\n              Resets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization to a new scope.\r\n            </summary>\r\n            <remarks>\r\n              This is useful for test cases.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.SetScope(Castle.DynamicProxy.ModuleScope)\">\r\n            <summary>\r\n              Resets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization to a given <paramref name=\"scope\"/>.\r\n            </summary>\r\n            <param name=\"scope\">The scope to be used for deserialization.</param>\r\n            <remarks>\r\n              By default, the deserialization process uses a different scope than the rest of the application, which can lead to multiple proxies\r\n              being generated for the same type. By explicitly setting the deserialization scope to the application's scope, this can be avoided.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\">\r\n            <summary>\r\n              Gets the <see cref=\"P:Castle.DynamicProxy.Serialization.ProxyObjectReference.ModuleScope\"/> used for deserialization.\r\n            </summary>\r\n            <value>As <see cref=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\"/> has no way of automatically determining the scope used by the application (and the application\r\n              might use more than one scope at the same time), <see cref=\"T:Castle.DynamicProxy.Serialization.ProxyObjectReference\"/> uses a dedicated scope instance for deserializing proxy\r\n              types. This instance can be reset and set to a specific value via <see cref=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.ResetScope\"/> and <see cref=\"M:Castle.DynamicProxy.Serialization.ProxyObjectReference.SetScope(Castle.DynamicProxy.ModuleScope)\"/>.</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Tokens.InvocationMethods\">\r\n            <summary>\r\n              Holds <see cref=\"T:System.Reflection.MethodInfo\"/> objects representing methods of <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Tokens.SerializationInfoMethods\">\r\n            <summary>\r\n              Holds <see cref=\"T:System.Reflection.MethodInfo\"/> objects representing methods of <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Bool\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Boolean)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Int32\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Int32)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.AddValue_Object\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.AddValue(System.String,System.Object)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.GetValue\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.GetValue(System.String,System.Type)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.Tokens.SerializationInfoMethods.SetType\">\r\n            <summary>\r\n              <see cref=\"M:System.Runtime.Serialization.SerializationInfo.SetType(System.Type)\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptorSelector\">\r\n            <summary>\r\n              Provides an extension point that allows proxies to choose specific interceptors on\r\n              a per method basis.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInterceptorSelector.SelectInterceptors(System.Type,System.Reflection.MethodInfo,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Selects the interceptors that should intercept calls to the given <paramref name=\"method\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type declaring the method to intercept.</param>\r\n            <param name=\"method\">The method that will be intercepted.</param>\r\n            <param name=\"interceptors\">All interceptors registered with the proxy.</param>\r\n            <returns>An array of interceptors to invoke upon calling the <paramref name=\"method\"/>.</returns>\r\n            <remarks>\r\n              This method is called only once per proxy instance, upon the first call to the\r\n              <paramref name=\"method\"/>. Either an empty array or null are valid return values to indicate\r\n              that no interceptor should intercept calls to the method. Although it is not advised, it is\r\n              legal to return other <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations than these provided in\r\n              <paramref name=\"interceptors\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.Lock.Create\">\r\n            <summary>\r\n            Creates a new lock.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderExAccessor\">\r\n            <summary>\r\n            This interface should be implemented by classes\r\n            that are available in a bigger context, exposing\r\n            the container to different areas in the same application.\r\n            <para>\r\n            For example, in Web application, the (global) HttpApplication\r\n            subclasses should implement this interface to expose \r\n            the configured container\r\n            </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IChangeProxyTarget\">\r\n            <summary>\r\n              Exposes means to change target objects of proxies and invocations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeInvocationTarget(System.Object)\">\r\n            <summary>\r\n              Changes the target object (<see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>) of current <see cref=\"T:Castle.DynamicProxy.IInvocation\"/>.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of invocation.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to <see cref=\"P:Castle.DynamicProxy.IInvocation.TargetType\"/>, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeProxyTarget(System.Object)\">\r\n            <summary>\r\n              Permanently changes the target object of the proxy. This does not affect target of the current invocation.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of the proxy.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to proxy's target type, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptor\">\r\n            <summary>\r\n              New interface that is going to be used by DynamicProxy 2\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.DynProxyGetTarget\">\r\n            <summary>\r\n              Get the proxy target (note that null is a valid target!)\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.GetInterceptors\">\r\n            <summary>\r\n              Gets the interceptors for the proxy\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceEnabledComponent\">\r\n            <summary>\r\n            Defines that the implementation wants a \r\n            <see cref=\"T:System.IServiceProvider\"/> in order to \r\n            access other components. The creator must be aware\r\n            that the component might (or might not) implement \r\n            the interface.\r\n            </summary>\r\n            <remarks>\r\n            Used by Castle Project components to, for example, \r\n            gather logging factories\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderEx\">\r\n            <summary>\r\n            Increments <c>IServiceProvider</c> with a generic service resolution operation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLoggerFactory\">\r\n            <summary>\r\n              Provides a factory that can produce either <see cref=\"T:Castle.Core.Logging.ILogger\"/> or\r\n              <see cref=\"T:Castle.Core.Logging.IExtendedLogger\"/> classes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILoggerFactory\">\r\n            <summary>\r\n              Manages the instantiation of <see cref=\"T:Castle.Core.Logging.ILogger\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.TraceLoggerFactory\">\r\n            <summary>\r\n              Used to create the TraceLogger implementation of ILogger interface. See <see cref=\"T:Castle.Core.Logging.TraceLogger\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IContextProperties\">\r\n            <summary>\r\n              Interface for Context Properties implementations\r\n            </summary>\r\n            <remarks>\r\n              <para>\r\n                This interface defines a basic property get set accessor.\r\n              </para>\r\n              <para>\r\n                Based on the ContextPropertiesBase of log4net, by Nicko Cadell.\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IContextProperties.Item(System.String)\">\r\n            <summary>\r\n              Gets or sets the value of a property\r\n            </summary>\r\n            <value>\r\n              The value for the property with the specified key\r\n            </value>\r\n            <remarks>\r\n              <para>\r\n                Gets or sets the value of a property\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogFactory\">\r\n            <summary>\r\n            NullLogFactory used when logging is turned off.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name and LoggerLevel.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <param name = \"level\">Level.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.StreamLoggerFactory\">\r\n            <summary>\r\n              Creates <see cref=\"T:Castle.Core.Logging.StreamLogger\"/> outputing \r\n              to files. The name of the file is derived from the log name\r\n              plus the 'log' extension.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLogger\">\r\n            <summary>\r\n              Provides an interface that supports <see cref=\"T:Castle.Core.Logging.ILogger\"/> and\r\n              allows the storage and retrieval of Contexts. These are supported in\r\n              both log4net and NLog.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILogger\">\r\n            <summary>\r\n              Manages logging.\r\n            </summary>\r\n            <remarks>\r\n              This is a facade for the different logging subsystems.\r\n              It offers a simplified interface that follows IOC patterns\r\n              and a simplified priority/level/severity abstraction.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Create a new child logger.\r\n              The name of the child logger is [current-loggers-name].[passed-in-name]\r\n            </summary>\r\n            <param name=\"loggerName\">The Subname of this logger.</param>\r\n            <returns>The New ILogger instance.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">If the name has an empty element name.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a debug message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.Func{System.String})\">\r\n            <summary>\r\n              Logs an error message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a fatal message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a info message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a warn message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value>True if \"debug\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value>True if \"error\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value>True if \"fatal\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value>True if \"info\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value>True if \"warn\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.GlobalProperties\">\r\n            <summary>\r\n              Exposes the Global Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadProperties\">\r\n            <summary>\r\n              Exposes the Thread Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadStacks\">\r\n            <summary>\r\n              Exposes the Thread Stack of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ConsoleLogger\">\r\n            <summary>\r\n            The Logger sending everything to the standard output streams.\r\n            This is mainly for the cases when you have a utility that\r\n            does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LevelFilteredLogger\">\r\n            <summary>\r\n            The Level Filtered Logger class.  This is a base clase which\r\n            provides a LogLevel attribute and reroutes all functions into\r\n            one Log method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.#ctor\">\r\n            <summary>\r\n              Creates a new <c>LevelFilteredLogger</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InitializeLifetimeService\">\r\n            <summary>\r\n            Keep the instance alive in a remoting scenario\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              Implementors output the log content by implementing this method only.\r\n              Note that exception can be null\r\n            </summary>\r\n            <param name = \"loggerLevel\"></param>\r\n            <param name = \"loggerName\"></param>\r\n            <param name = \"message\"></param>\r\n            <param name = \"exception\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Level\">\r\n            <value>\r\n              The <c>LoggerLevel</c> that this logger\r\n              will be using. Defaults to <c>LoggerLevel.Off</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Name\">\r\n            <value>\r\n              The name that this logger will be using. \r\n              Defaults to <c>String.Empty</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Debug\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Info\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Warn\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Error\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Fatal\"/> bit</value>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c> and the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c>.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              A Common method to log.\r\n            </summary>\r\n            <param name = \"loggerLevel\">The level of logging</param>\r\n            <param name = \"loggerName\">The name of the logger</param>\r\n            <param name = \"message\">The Message</param>\r\n            <param name = \"exception\">The Exception</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns a new <c>ConsoleLogger</c> with the name\r\n              added after this loggers name, with a dot in between.\r\n            </summary>\r\n            <param name = \"loggerName\">The added hierarchical name.</param>\r\n            <returns>A new <c>ConsoleLogger</c>.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.DiagnosticsLogger\">\r\n            <summary>\r\n              The Logger using standart Diagnostics namespace.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String,System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n            <param name=\"source\"><see cref=\"P:System.Diagnostics.EventLog.Source\"/></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.DiagnosticsLogger.#ctor(System.String,System.String,System.String)\">\r\n            <summary>\r\n              Creates a logger based on <see cref=\"T:System.Diagnostics.EventLog\"/>.\r\n            </summary>\r\n            <param name=\"logName\"><see cref=\"P:System.Diagnostics.EventLog.Log\"/></param>\r\n            <param name=\"machineName\"><see cref=\"P:System.Diagnostics.EventLog.MachineName\"/></param>\r\n            <param name=\"source\"><see cref=\"P:System.Diagnostics.EventLog.Source\"/></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogger\">\r\n            <summary>\r\n              The Null Logger class.  This is useful for implementations where you need\r\n              to provide a logger to a utility class, but do not want any output from it.\r\n              It also helps when you have a utility that does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns this <c>NullLogger</c>.\r\n            </summary>\r\n            <param name = \"loggerName\">Ignored</param>\r\n            <returns>This ILogger instance.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.GlobalProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadStacks\">\r\n            <summary>\r\n              Returns empty context stacks.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsDebugEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsErrorEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsFatalEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsInfoEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsWarnEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.StreamLogger\">\r\n            <summary>\r\n            The Stream Logger class.  This class can stream log information\r\n            to any stream, it is suitable for storing a log file to disk,\r\n            or to a <c>MemoryStream</c> for testing your components.\r\n            </summary>\r\n            <remarks>\r\n            This logger is not thread safe.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default encoding \r\n              and buffer size. Initial Level is set to Debug.\r\n            </summary>\r\n            <param name = \"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name = \"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default buffer size.\r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding,System.Int32)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c>. \r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n            <param name=\"bufferSize\">\r\n              The buffer size that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.StreamWriter)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with \r\n              Debug as default Level.\r\n            </summary>\r\n            <param name = \"name\">The name of the log.</param>\r\n            <param name = \"writer\">The <c>StreamWriter</c> the log will write to.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.TraceLogger\">\r\n            <summary>\r\n              The TraceLogger sends all logging to the System.Diagnostics.TraceSource\r\n              built into the .net framework.\r\n            </summary>\r\n            <remarks>\r\n              Logging can be configured in the system.diagnostics configuration \r\n              section. \r\n            \r\n              If logger doesn't find a source name with a full match it will\r\n              use source names which match the namespace partially. For example you can\r\n              configure from all castle components by adding a source name with the\r\n              name \"Castle\". \r\n            \r\n              If no portion of the namespace matches the source named \"Default\" will\r\n              be used.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.#ctor(System.String)\">\r\n            <summary>\r\n            Build a new trace logger based on the named TraceSource\r\n            </summary>\r\n            <param name=\"name\">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n            Build a new trace logger based on the named TraceSource\r\n            </summary>\r\n            <param name=\"name\">The name used to locate the best TraceSource. In most cases comes from the using type's fullname.</param>\r\n            <param name=\"level\">The default logging level at which this source should write messages. In almost all cases this\r\n            default value will be overridden in the config file. </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.TraceLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n            Create a new child logger.\r\n            The name of the child logger is [current-loggers-name].[passed-in-name]\r\n            </summary>\r\n            <param name=\"loggerName\">The Subname of this logger.</param>\r\n            <returns>The New ILogger instance.</returns> \r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.AbstractConfiguration\">\r\n            <summary>\r\n              This is an abstract <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> implementation\r\n              that deals with methods that can be abstracted away\r\n              from underlying implementations.\r\n            </summary>\r\n            <remarks>\r\n              <para><b>AbstractConfiguration</b> makes easier to implementers \r\n                to create a new version of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/></para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.IConfiguration\">\r\n            <summary>\r\n            <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> is a interface encapsulating a configuration node\r\n            used to retrieve configuration values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.IConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n            Gets the value of the node and converts it \r\n            into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n            The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Name\">\r\n            <summary>\r\n            Gets the name of the node.\r\n            </summary>\r\n            <value>\r\n            The Name of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of the node.\r\n            </summary>\r\n            <value>\r\n            The Value of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Children\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>\r\n            elements containing all node children.\r\n            </summary>\r\n            <value>The Collection of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Attributes\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.IDictionary\"/> of the configuration attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.AbstractConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n              Gets the value of the node and converts it\r\n              into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n              The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Attributes\">\r\n            <summary>\r\n              Gets node attributes.\r\n            </summary>\r\n            <value>\r\n              All attributes of the node.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Children\">\r\n            <summary>\r\n              Gets all child nodes.\r\n            </summary>\r\n            <value>The <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Name\">\r\n            <summary>\r\n              Gets the name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Value\">\r\n            <summary>\r\n              Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.ConfigurationCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor(System.Collections.Generic.IEnumerable{Castle.Core.Configuration.IConfiguration})\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.MutableConfiguration\">\r\n            <summary>\r\n            Summary description for MutableConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.MutableConfiguration.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Core.Configuration.MutableConfiguration\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.MutableConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n            The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.Deserialize(System.Xml.XmlNode)\">\r\n            <summary>\r\n              Deserializes the specified node into an abstract representation of configuration.\r\n            </summary>\r\n            <param name = \"node\">The node.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.Xml.XmlConfigurationDeserializer.GetConfigValue(System.String)\">\r\n            <summary>\r\n              If a config value is an empty string we return null, this is to keep\r\n              backward compatibility with old code\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Pair`2\">\r\n            <summary>\r\n            General purpose class to represent a standard pair of values. \r\n            </summary>\r\n            <typeparam name=\"TFirst\">Type of the first value</typeparam>\r\n            <typeparam name=\"TSecond\">Type of the second value</typeparam>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Pair`2.#ctor(`0,`1)\">\r\n            <summary>\r\n            Constructs a pair with its values\r\n            </summary>\r\n            <param name=\"first\"></param>\r\n            <param name=\"second\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ProxyServices\">\r\n            <summary>\r\n            List of utility methods related to dynamic proxy operations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ProxyServices.IsDynamicProxy(System.Type)\">\r\n            <summary>\r\n            Determines whether the specified type is a proxy generated by\r\n            DynamicProxy (1 or 2).\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>\r\n            \t<c>true</c> if it is a proxy; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\">\r\n            <summary>\r\n            Readonly implementation of <see cref=\"T:System.Collections.IDictionary\"/> which uses an anonymous object as its source. Uses names of properties as keys, and property values as... well - values. Keys are not case sensitive.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.#ctor(System.Object)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"target\">The target.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n              Adds an element with the provided key and value to the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The <see cref = \"T:System.Object\" /> to use as the key of the element to add.</param>\r\n            <param name = \"value\">The <see cref = \"T:System.Object\" /> to use as the value of the element to add.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">An element with the same key already exists in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Clear\">\r\n            <summary>\r\n              Removes all elements from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n              Determines whether the <see cref = \"T:System.Collections.IDictionary\" /> object contains an element with the specified key.\r\n            </summary>\r\n            <param name = \"key\">The key to locate in the <see cref = \"T:System.Collections.IDictionary\" /> object.</param>\r\n            <returns>\r\n              true if the <see cref = \"T:System.Collections.IDictionary\" /> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n              Removes the element with the specified key from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The key of the element to remove.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IEnumerator\" /> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n              Copies the elements of the <see cref = \"T:System.Collections.ICollection\" /> to an <see cref = \"T:System.Array\" />, starting at a particular <see\r\n               cref = \"T:System.Array\" /> index.\r\n            </summary>\r\n            <param name = \"array\">The one-dimensional <see cref = \"T:System.Array\" /> that is the destination of the elements copied from <see\r\n               cref = \"T:System.Collections.ICollection\" />. The <see cref = \"T:System.Array\" /> must have zero-based indexing.</param>\r\n            <param name = \"index\">The zero-based index in <paramref name = \"array\" /> at which copying begins.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"array\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentOutOfRangeException\">\r\n              <paramref name = \"index\" /> is less than zero. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">\r\n              <paramref name = \"array\" /> is multidimensional.-or- <paramref name = \"index\" /> is equal to or greater than the length of <paramref\r\n               name = \"array\" />.-or- The number of elements in the source <see cref = \"T:System.Collections.ICollection\" /> is greater than the available space from <paramref\r\n               name = \"index\" /> to the end of the destination <paramref name = \"array\" />. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">The type of the source <see cref = \"T:System.Collections.ICollection\" /> cannot be cast automatically to the type of the destination <paramref\r\n               name = \"array\" />. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#GetEnumerator\">\r\n            <summary>\r\n              Returns an <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Read(System.Collections.IDictionary,System.Object)\">\r\n            <summary>\r\n              Reads values of properties from <paramref name = \"valuesAsAnonymousObject\" /> and inserts them into <paramref\r\n               name = \"targetDictionary\" /> using property names as keys.\r\n            </summary>\r\n            <param name = \"targetDictionary\"></param>\r\n            <param name = \"valuesAsAnonymousObject\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Count\">\r\n            <summary>\r\n              Gets the number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n              Gets a value indicating whether access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n              Gets an object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Keys\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Values\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#IsFixedSize\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResource\">\r\n            <summary>\r\n            Represents a 'streamable' resource. Can\r\n            be a file, a resource in an assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader(System.Text.Encoding)\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <param name=\"encoding\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.CreateRelative(System.String)\">\r\n            <summary>\r\n            Returns an instance of <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            created according to the <c>relativePath</c>\r\n            using itself as the root.\r\n            </summary>\r\n            <param name=\"relativePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Resource.IResource.FileBasePath\">\r\n            <summary>\r\n            \r\n            </summary>\r\n            <remarks>\r\n            Only valid for resources that\r\n            can be obtained through relative paths\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.AbstractStreamResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Resource.AbstractStreamResource.createStream\">\r\n            <summary>\r\n            This returns a new stream instance each time it is called.\r\n            It is the responsibility of the caller to dispose of this stream\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResourceFactory\">\r\n            <summary>\r\n            Depicts the contract for resource factories.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Accept(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Used to check whether the resource factory\r\n            is able to deal with the given resource\r\n            identifier.\r\n            </summary>\r\n            <remarks>\r\n            Implementors should return <c>true</c>\r\n            only if the given identifier is supported\r\n            by the resource factory\r\n            </remarks>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri,System.String)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <param name=\"basePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.FileResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.FileResourceFactory\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.StaticContentResource\">\r\n            <summary>\r\n            Adapts a static string content as an <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.UncResource\">\r\n            <summary>\r\n            Enable access to files on network shares\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Smtp.IEmailSender\">\r\n            <summary>\r\n            Email sender abstraction.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n            Sends a mail message.\r\n            </summary>\r\n            <param name=\"from\">From field</param>\r\n            <param name=\"to\">To field</param>\r\n            <param name=\"subject\">E-mail's subject</param>\r\n            <param name=\"messageText\">message's body</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Sends a <see cref=\"T:System.Net.Mail.MailMessage\">message</see>. \r\n            </summary>\r\n            <param name=\"message\"><see cref=\"T:System.Net.Mail.MailMessage\">Message</see> instance</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.IEmailSender.Send(System.Collections.Generic.IEnumerable{System.Net.Mail.MailMessage})\">\r\n            <summary>\r\n            Sends multiple <see cref=\"T:System.Net.Mail.MailMessage\">messages</see>. \r\n            </summary>\r\n            <param name=\"messages\">List of <see cref=\"T:System.Net.Mail.MailMessage\">messages</see></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Smtp.DefaultSmtpSender\">\r\n            <summary>\r\n            Default <see cref=\"T:Castle.Core.Smtp.IEmailSender\"/> implementation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Core.Smtp.DefaultSmtpSender\"/> class based on the <see cref=\"T:System.Net.Mail.SmtpClient\"/> configuration provided in the application configuration file.\r\n            </summary>\r\n            <remarks>\r\n            This constructor is based on the default <see cref=\"T:System.Net.Mail.SmtpClient\"/> configuration in the application configuration file.\r\n            </remarks> \r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.#ctor(System.String)\">\r\n            <summary>\r\n            This service implementation\r\n            requires a host name in order to work\r\n            </summary>\r\n            <param name=\"hostname\">The smtp server name</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Send(System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n            Sends a message. \r\n            </summary>\r\n            <exception cref=\"T:System.ArgumentNullException\">If any of the parameters is null</exception>\r\n            <param name=\"from\">From field</param>\r\n            <param name=\"to\">To field</param>\r\n            <param name=\"subject\">e-mail's subject</param>\r\n            <param name=\"messageText\">message's body</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Send(System.Net.Mail.MailMessage)\">\r\n            <summary>\r\n            Sends a message. \r\n            </summary>\r\n            <exception cref=\"T:System.ArgumentNullException\">If the message is null</exception>\r\n            <param name=\"message\">Message instance</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Smtp.DefaultSmtpSender.Configure(System.Net.Mail.SmtpClient)\">\r\n            <summary>\r\n            Configures the sender\r\n            with port information and eventual credential\r\n            informed\r\n            </summary>\r\n            <param name=\"smtpClient\">Message instance</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Port\">\r\n            <summary>\r\n            Gets or sets the port used to \r\n            access the SMTP server\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Hostname\">\r\n            <summary>\r\n            Gets the hostname.\r\n            </summary>\r\n            <value>The hostname.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.AsyncSend\">\r\n            <summary>\r\n            Gets or sets a value which is used to \r\n            configure if emails are going to be sent asynchronously or not.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Timeout\">\r\n            <summary>\r\n            Gets or sets a value that specifies \r\n            the amount of time after which a synchronous Send call times out.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.UseSsl\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the email should be sent using \r\n            a secure communication channel.\r\n            </summary>\r\n            <value><c>true</c> if should use SSL; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Domain\">\r\n            <summary>\r\n            Gets or sets the domain.\r\n            </summary>\r\n            <value>The domain.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.UserName\">\r\n            <summary>\r\n            Gets or sets the name of the user.\r\n            </summary>\r\n            <value>The name of the user.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.Password\">\r\n            <summary>\r\n            Gets or sets the password.\r\n            </summary>\r\n            <value>The password.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Smtp.DefaultSmtpSender.HasCredentials\">\r\n            <summary>\r\n            Gets a value indicating whether credentials were informed.\r\n            </summary>\r\n            <value>\r\n            <see langword=\"true\"/> if this instance has credentials; otherwise, <see langword=\"false\"/>.\r\n            </value>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/lib/sl4/Castle.Core.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Castle.Core</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ReferenceAttribute\">\r\n            <summary>\r\n            Specifies assignment by reference rather than by copying.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IfExistsAttribute\">\r\n            <summary>\r\n            Suppresses any on-demand behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfEmptyAttribute\">\r\n            <summary>\r\n            Removes a property if null or empty string, guid or collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.RemoveIfAttribute\">\r\n            <summary>\r\n            Removes a property if matches value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\">\r\n            <summary>\r\n            Defines the contract for customizing dictionary access.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehavior.Copy\">\r\n            <summary>\r\n            Copies the dictionary behavior.\r\n            </summary>\r\n            <returns>null if should not be copied.  Otherwise copy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.IDictionaryBehavior.ExecutionOrder\">\r\n            <summary>\r\n            Determines relative order to apply related behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter\">\r\n            <summary>\r\n            Defines the contract for updating dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertySetter.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the stored dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>true if the property should be stored.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ICondition\">\r\n            <summary>\r\n            Contract for value matching.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.VolatileAttribute\">\r\n            <summary>\r\n            Indicates that underlying values are changeable and should not be cached.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryInitializer\">\r\n            <summary>\r\n             Contract for dictionary initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"behaviors\">The dictionary behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Abstract implementation of <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterVisitor\">\r\n            <summary>\r\n            Conract for traversing a <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryCreate\">\r\n            <summary>\r\n            Contract for creating additional Dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\">\r\n            <summary>\r\n            Contract for manipulating the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryEdit\">\r\n            <summary>\r\n            Contract for editing the Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryNotify\">\r\n            <summary>\r\n            Contract for managing Dictionary adapter notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidate\">\r\n            <summary>\r\n            Contract for validating Dictionary adapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder\">\r\n            <summary>\r\n            Defines the contract for building <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryBehavior\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder.BuildBehaviors\">\r\n            <summary>\r\n            Builds the dictionary behaviors.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter\">\r\n            <summary>\r\n            Abstract adapter for the <see cref=\"T:System.Collections.IDictionary\"/> support\r\n            needed by the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n            Adds an element with the provided key and value to the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The <see cref=\"T:System.Object\"></see> to use as the key of the element to add.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"></see> to use as the value of the element to add.</param>\r\n            <exception cref=\"T:System.ArgumentException\">An element with the same key already exists in the <see cref=\"T:System.Collections.IDictionary\"></see> object. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Clear\">\r\n            <summary>\r\n            Removes all elements from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.IDictionary\"></see> object contains an element with the specified key.\r\n            </summary>\r\n            <param name=\"key\">The key to locate in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</param>\r\n            <returns>\r\n            true if the <see cref=\"T:System.Collections.IDictionary\"></see> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n            Returns an <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IDictionaryEnumerator\"></see> object for the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n            Removes the element with the specified key from the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <param name=\"key\">The key of the element to remove.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.-or- The <see cref=\"T:System.Collections.IDictionary\"></see> has a fixed size. </exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">key is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n            Copies the elements of the <see cref=\"T:System.Collections.ICollection\"></see> to an <see cref=\"T:System.Array\"></see>, starting at a particular <see cref=\"T:System.Array\"></see> index.\r\n            </summary>\r\n            <param name=\"array\">The one-dimensional <see cref=\"T:System.Array\"></see> that is the destination of the elements copied from <see cref=\"T:System.Collections.ICollection\"></see>. The <see cref=\"T:System.Array\"></see> must have zero-based indexing.</param>\r\n            <param name=\"index\">The zero-based index in array at which copying begins.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">array is null. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">The type of the source <see cref=\"T:System.Collections.ICollection\"></see> cannot be cast automatically to the type of the destination array. </exception>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">index is less than zero. </exception>\r\n            <exception cref=\"T:System.ArgumentException\">array is multidimensional.-or- index is equal to or greater than the length of array.-or- The number of elements in the source <see cref=\"T:System.Collections.ICollection\"></see> is greater than the available space from index to the end of the destination array. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"></see> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsFixedSize\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n            Gets a value indicating whether the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref=\"T:System.Collections.IDictionary\"></see> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Keys\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the keys of the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Values\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref=\"T:System.Collections.ICollection\"></see> object containing the values in the <see cref=\"T:System.Collections.IDictionary\"></see> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.Count\">\r\n            <summary>\r\n            Gets the number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n            Gets a value indicating whether access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref=\"T:System.Collections.ICollection\"></see> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.AbstractDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n            Gets an object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref=\"T:System.Collections.ICollection\"></see>.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.CollectionExtensions.IsNullOrEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n              Checks whether or not collection is null or empty. Assumes colleciton can be safely enumerated multiple times.\r\n            </summary>\r\n            <param name = \"this\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToCastleCore\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to Castle.Core \r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToCastleCore)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Internal.InternalsVisible.ToDynamicProxyGenAssembly2\">\r\n            <summary>\r\n              Constant to use when making assembly internals visible to proxy types generated by DynamicProxy. Required when proxying internal types.\r\n              <c>[assembly: InternalsVisibleTo(CoreInternalsVisible.ToDynamicProxyGenAssembly2)]</c>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.ComponentAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a nested component.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Builds the specified key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The current key.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>The updated key</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter\">\r\n            <summary>\r\n            Defines the contract for retrieving dictionary values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.NoPrefix\">\r\n            <summary>\r\n            Applies no prefix.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.ComponentAttribute.Prefix\">\r\n            <summary>\r\n            Gets or sets the prefix.\r\n            </summary>\r\n            <value>The prefix.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterAttribute\">\r\n            <summary>\r\n            Identifies the dictionary adapter types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.FetchAttribute\">\r\n            <summary>\r\n            Identifies an interface or property to be pre-fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor\">\r\n            <summary>\r\n            Instructs fetching to occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.FetchAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Instructs fetching according to <paramref name=\"fetch\"/>\r\n            </summary>\r\n            <param name=\"fetch\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.FetchAttribute.Fetch\">\r\n            <summary>\r\n            Gets whether or not fetching should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.GroupAttribute\">\r\n            <summary>\r\n            Assigns a property to a group.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.GroupAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Constructs a group assignment.\r\n            </summary>\r\n            <param name=\"group\">The group name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.GroupAttribute.Group\">\r\n            <summary>\r\n            Gets the group the property is assigned to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\">\r\n            <summary>\r\n            Assigns a specific dictionary key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"key\">The key.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyAttribute.#ctor(System.String[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keys\">The compound key.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties of an interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a default instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeyPrefixAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"keyPrefix\">The prefix for the keyed properties of the interface.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.KeyPrefixAttribute.KeyPrefix\">\r\n            <summary>\r\n            Gets the prefix key added to the properties of the interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\">\r\n            <summary>\r\n            Substitutes part of key with another string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute.#ctor(System.String,System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.KeySubstitutionAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"oldValue\">The old value.</param>\r\n            <param name=\"newValue\">The new value.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.MultiLevelEditAttribute\">\r\n            <summary>\r\n            Requests support for multi-level editing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.NewGuidAttribute\">\r\n            <summary>\r\n            Generates a new GUID on demand.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.OnDemandAttribute\">\r\n            <summary>\r\n            Support for on-demand value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropagateNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringFormatAttribute\">\r\n            <summary>\r\n            Provides simple string formatting from existing properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Format\">\r\n            <summary>\r\n            Gets the string format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringFormatAttribute.Properties\">\r\n            <summary>\r\n            Gets the format properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringListAttribute\">\r\n            <summary>\r\n            Identifies a property should be represented as a delimited string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringListAttribute.Separator\">\r\n            <summary>\r\n            Gets the separator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.StringValuesAttribute\">\r\n            <summary>\r\n            Converts all properties to strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.StringValuesAttribute.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.SuppressNotificationsAttribute\">\r\n            <summary>\r\n            Suppress property change notifications.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer\">\r\n            <summary>\r\n             Contract for property descriptor initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IPropertyDescriptorInitializer.Initialize(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Object[])\">\r\n            <summary>\r\n            Performs any initialization of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"propertyDescriptor\">The property descriptor.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.TypeKeyPrefixAttribute\">\r\n            <summary>\r\n            Assigns a prefix to the keyed properties using the interface name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\">\r\n            <summary>\r\n            Manages conversion between property values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.#ctor(System.ComponentModel.TypeConverter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.DefaultPropertyGetter\"/> class.\r\n            </summary>\r\n            <param name=\"converter\">The converter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the effective dictionary value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns>The effective property value.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DefaultPropertyGetter.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory\">\r\n            <summary>\r\n            Uses Reflection.Emit to expose the properties of a dictionary\r\n            through a dynamic implementation of a typed interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory\">\r\n            <summary>\r\n            Defines the contract for building typed dictionary adapters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The typed interface.</typeparam>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets a typed adapter bound to the <see cref=\"T:System.Collections.IDictionary\"/>.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"dictionary\">The underlying source of properties.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>An implementation of the typed interface bound to the dictionary.</returns>\r\n            <remarks>\r\n            The type represented by T must be an interface with properties.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Castle.Components.DictionaryAdapter.DictionaryAdapterMeta\"/> associated with the type.\r\n            </summary>\r\n            <param name=\"type\">The typed interface.</param>\r\n            <param name=\"descriptor\">The property descriptor.</param>\r\n            <returns>The adapter meta-data.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter(System.Type,System.Collections.IDictionary,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``2(System.Collections.Generic.IDictionary{System.String,``1})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapter``1(System.Type,System.Collections.Generic.IDictionary{System.String,``0})\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryAdapterFactory.GetAdapterMeta(System.Type,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <inheritdoc />\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\">\r\n            <summary>\r\n            Describes a dictionary property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor\">\r\n            <summary>\r\n            Initializes an empty <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Reflection.PropertyInfo,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <param name=\"behaviors\">The property behaviors.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.#ctor(Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n             Copies an existinginstance of the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"source\"></param>\r\n            <param name=\"copyBehaviors\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetKey(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Gets the key.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilder(Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder[])\">\r\n            <summary>\r\n            Adds the key builder.\r\n            </summary>\r\n            <param name=\"builders\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddKeyBuilders(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryKeyBuilder})\">\r\n            <summary>\r\n            Adds the key builders.\r\n            </summary>\r\n            <param name=\"builders\">The builders.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyKeyBuilders(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the key builders to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.GetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object,Castle.Components.DictionaryAdapter.PropertyDescriptor,System.Boolean)\">\r\n            <summary>\r\n            Gets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"storedValue\">The stored value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <param name=\"ifExists\">true if return only existing.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetter(Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter[])\">\r\n            <summary>\r\n            Adds the dictionary getter.\r\n            </summary>\r\n            <param name=\"getters\">The getter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddGetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter})\">\r\n            <summary>\r\n            Adds the dictionary getters.\r\n            </summary>\r\n            <param name=\"gets\">The getters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyGetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property getters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.SetPropertyValue(Castle.Components.DictionaryAdapter.IDictionaryAdapter,System.String,System.Object@,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Sets the property value.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"key\">The key.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"descriptor\">The descriptor.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetter(Castle.Components.DictionaryAdapter.IDictionaryPropertySetter[])\">\r\n            <summary>\r\n            Adds the dictionary setter.\r\n            </summary>\r\n            <param name=\"setters\">The setter.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddSetters(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryPropertySetter})\">\r\n            <summary>\r\n            Adds the dictionary setters.\r\n            </summary>\r\n            <param name=\"sets\">The setters.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopySetters(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the property setters to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehavior(Castle.Components.DictionaryAdapter.IDictionaryBehavior[])\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryBehavior})\">\r\n            <summary>\r\n            Adds the behaviors.\r\n            </summary>\r\n            <param name=\"behaviors\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.AddBehaviors(Castle.Components.DictionaryAdapter.IDictionaryBehaviorBuilder[])\">\r\n            <summary>\r\n            Adds the behaviors from the builders.\r\n            </summary>\r\n            <param name=\"builders\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.CopyBehaviors(Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Copies the behaviors to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.PropertyDescriptor.Copy\">\r\n            <summary>\r\n            Copies the <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExecutionOrder\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyName\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            Gets the property type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Property\">\r\n            <summary>\r\n            Gets the property.\r\n            </summary>\r\n            <value>The property.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IsDynamicProperty\">\r\n            <summary>\r\n            Returns true if the property is dynamic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.State\">\r\n            <summary>\r\n            Gets additional state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Fetch\">\r\n            <summary>\r\n            Determines if property should be fetched.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.IfExists\">\r\n            <summary>\r\n            Determines if property must exist first.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.SuppressNotifications\">\r\n            <summary>\r\n            Determines if notifications should occur.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Behaviors\">\r\n            <summary>\r\n            Gets the property behaviors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.TypeConverter\">\r\n            <summary>\r\n            Gets the type converter.\r\n            </summary>\r\n            <value>The type converter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.ExtendedProperties\">\r\n            <summary>\r\n            Gets the extended properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.KeyBuilders\">\r\n            <summary>\r\n            Gets the key builders.\r\n            </summary>\r\n            <value>The key builders.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Setters\">\r\n            <summary>\r\n            Gets the setter.\r\n            </summary>\r\n            <value>The setter.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.PropertyDescriptor.Getters\">\r\n            <summary>\r\n            Gets the getter.\r\n            </summary>\r\n            <value>The getter.</value>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializer(Castle.Components.DictionaryAdapter.IDictionaryInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryInitializer})\">\r\n            <summary>\r\n            Adds the dictionary initializers.\r\n            </summary>\r\n            <param name=\"inits\">The initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializer(Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer[])\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.AddMetaInitializers(System.Collections.Generic.IEnumerable{Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer})\">\r\n            <summary>\r\n            Adds the dictionary meta-data initializers.\r\n            </summary>\r\n            <param name=\"inits\">The meta-data initializers.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.DictionaryDescriptor.CopyMetaInitializers(Castle.Components.DictionaryAdapter.DictionaryDescriptor)\">\r\n            <summary>\r\n            Copies the meta-initializers to the other <see cref=\"T:Castle.Components.DictionaryAdapter.PropertyDescriptor\"/>\r\n            </summary>\r\n            <param name=\"other\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.Initializers\">\r\n            <summary>\r\n            Gets the initializers.\r\n            </summary>\r\n            <value>The initializers.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Components.DictionaryAdapter.DictionaryDescriptor.MetaInitializers\">\r\n            <summary>\r\n            Gets the meta-data initializers.\r\n            </summary>\r\n            <value>The meta-data initializers.</value>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer\">\r\n            <summary>\r\n             Contract for dictionary meta-data initialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryMetaInitializer.Initialize(Castle.Components.DictionaryAdapter.IDictionaryAdapterFactory,Castle.Components.DictionaryAdapter.DictionaryAdapterMeta)\">\r\n            <summary>\r\n            Performs any initialization of the dictionary adapter meta-data.\r\n            </summary>\r\n            <param name=\"factory\">The dictionary adapter factory.</param>\r\n            <param name=\"dictionaryMeta\">The dictionary adapter meta.</param>\r\n            \r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDictionaryValidator\">\r\n            <summary>\r\n            Contract for dictionary validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.IsValid(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Determines if <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> is valid.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>true if valid.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/>.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <returns>The error summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Validate(Castle.Components.DictionaryAdapter.IDictionaryAdapter,Castle.Components.DictionaryAdapter.PropertyDescriptor)\">\r\n            <summary>\r\n            Validates the <see cref=\"T:Castle.Components.DictionaryAdapter.IDictionaryAdapter\"/> for a property.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n            <param name=\"property\">The property to validate.</param>\r\n            <returns>The property summary information.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Components.DictionaryAdapter.IDictionaryValidator.Invalidate(Castle.Components.DictionaryAdapter.IDictionaryAdapter)\">\r\n            <summary>\r\n            Invalidates any results cached by the validator.\r\n            </summary>\r\n            <param name=\"dictionaryAdapter\">The dictionary adapter.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Internal.AttributesUtil\">\r\n            <summary>\r\n              Helper class for retrieving attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetAttributes``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attributes. Does not consider inherited attributes!\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttribute``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attribute.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attribute.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeAttributes``1(System.Type)\">\r\n            <summary>\r\n              Gets the type attributes.\r\n            </summary>\r\n            <param name = \"type\">The type.</param>\r\n            <returns>The type attributes.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.GetTypeConverter(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Gets the type converter.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.AttributesUtil.HasAttribute``1(System.Reflection.ICustomAttributeProvider)\">\r\n            <summary>\r\n              Gets the attribute.\r\n            </summary>\r\n            <param name = \"member\">The member.</param>\r\n            <returns>The member attribute.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue`1\">\r\n            <summary>\r\n            Contract for typed dynamic value resolution.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"T:Castle.Components.DictionaryAdapter.IDynamicValue\">\r\n            <summary>\r\n            Contract for dynamic value resolution.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LoggerLevel\">\r\n            <summary>\r\n              Supporting Logger levels.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Off\">\r\n            <summary>\r\n              Logging will be off\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Fatal\">\r\n            <summary>\r\n              Fatal logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Error\">\r\n            <summary>\r\n              Error logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Warn\">\r\n            <summary>\r\n              Warn logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Info\">\r\n            <summary>\r\n              Info logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Logging.LoggerLevel.Debug\">\r\n            <summary>\r\n              Debug logging level\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInvocation\">\r\n            <summary>\r\n              Encapsulates an invocation of a proxied method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetArgumentValue(System.Int32)\">\r\n            <summary>\r\n              Gets the value of the argument at the specified <paramref name = \"index\" />.\r\n            </summary>\r\n            <param name = \"index\">The index.</param>\r\n            <returns>The value of the argument at the specified <paramref name = \"index\" />.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethod\">\r\n            <summary>\r\n              Returns the concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, with any generic\r\n              parameters bound to real types.\r\n            </summary>\r\n            <returns>\r\n              The concrete instantiation of the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> on the proxy, or the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> if\r\n              not a generic method.\r\n            </returns>\r\n            <remarks>\r\n              Can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.GetConcreteMethodInvocationTarget\">\r\n            <summary>\r\n              Returns the concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, with any\r\n              generic parameters bound to real types.\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <returns>The concrete instantiation of <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>, or\r\n              <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/> if not a generic method.</returns>\r\n            <remarks>\r\n              In debug builds this can be slower than calling <see cref=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.Proceed\">\r\n            <summary>\r\n              Proceeds the call to the next interceptor in line, and ultimately to the target method.\r\n            </summary>\r\n            <remarks>\r\n              Since interface proxies without a target don't have the target implementation to proceed to,\r\n              it is important, that the last interceptor does not call this method, otherwise a\r\n              <see cref=\"T:System.NotImplementedException\"/> will be thrown.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInvocation.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n              Overrides the value of an argument at the given <paramref name=\"index\"/> with the\r\n              new <paramref name=\"value\"/> provided.\r\n            </summary>\r\n            <remarks>\r\n              This method accepts an <see cref=\"T:System.Object\"/>, however the value provided must be compatible\r\n              with the type of the argument defined on the method, otherwise an exception will be thrown.\r\n            </remarks>\r\n            <param name=\"index\">The index of the argument to override.</param>\r\n            <param name=\"value\">The new value for the argument.</param>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Arguments\">\r\n            <summary>\r\n              Gets the arguments that the <see cref=\"P:Castle.DynamicProxy.IInvocation.Method\"/> has been invoked with.\r\n            </summary>\r\n            <value>The arguments the method was invoked with.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.GenericArguments\">\r\n            <summary>\r\n              Gets the generic arguments of the method.\r\n            </summary>\r\n            <value>The generic arguments, or null if not a generic method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\">\r\n            <summary>\r\n              Gets the object on which the invocation is performed. This is different from proxy object\r\n              because most of the time this will be the proxy target object.\r\n            </summary>\r\n            <seealso cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/>\r\n            <value>The invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Method\">\r\n            <summary>\r\n              Gets the <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked on the proxy.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Reflection.MethodInfo\"/> representing the method being invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.MethodInvocationTarget\">\r\n            <summary>\r\n              For interface proxies, this will point to the <see cref=\"T:System.Reflection.MethodInfo\"/> on the target class.\r\n            </summary>\r\n            <value>The method invocation target.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.Proxy\">\r\n            <summary>\r\n              Gets the proxy object on which the intercepted method is invoked.\r\n            </summary>\r\n            <value>Proxy object on which the intercepted method is invoked.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.ReturnValue\">\r\n            <summary>\r\n              Gets or sets the return value of the method.\r\n            </summary>\r\n            <value>The return value of the method.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IInvocation.TargetType\">\r\n            <summary>\r\n              Gets the type of the target object for the intercepted method.\r\n            </summary>\r\n            <value>The type of the target object.</value>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyGenerationHook\">\r\n            <summary>\r\n              Used during the target type inspection process. Implementors have a chance to customize the\r\n              proxy generation process.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.MethodsInspected\">\r\n            <summary>\r\n              Invoked by the generation process to notify that the whole process has completed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.NonProxyableMemberNotification(System.Type,System.Reflection.MemberInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to notify that a member was not marked as virtual.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the non-virtual member.</param>\r\n            <param name = \"memberInfo\">The non-virtual member.</param>\r\n            <remarks>\r\n              This method gives an opportunity to inspect any non-proxyable member of a type that has \r\n              been requested to be proxied, and if appropriate - throw an exception to notify the caller.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyGenerationHook.ShouldInterceptMethod(System.Type,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Invoked by the generation process to determine if the specified method should be proxied.\r\n            </summary>\r\n            <param name = \"type\">The type which declares the given method.</param>\r\n            <param name = \"methodInfo\">The method to inspect.</param>\r\n            <returns>True if the given method should be proxied; false otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Contributors.ITypeContributor\">\r\n            <summary>\r\n              Interface describing elements composing generated type\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Contributors.MembersCollector.AcceptMethod(System.Reflection.MethodInfo,System.Boolean,Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Performs some basic screening and invokes the <see cref=\"T:Castle.DynamicProxy.IProxyGenerationHook\"/>\r\n              to select methods.\r\n            </summary>\r\n            <param name=\"method\"></param>\r\n            <param name=\"onlyVirtuals\"></param>\r\n            <param name=\"hook\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IAttributeDisassembler\">\r\n            <summary>\r\n              Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by Dynamic Proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IAttributeDisassembler.Disassemble(System.Attribute)\">\r\n            <summary>\r\n              Disassembles given attribute instance back to corresponding CustomAttributeBuilder.\r\n            </summary>\r\n            <param name=\"attribute\">An instance of attribute to disassemble</param>\r\n            <returns><see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> corresponding 1 to 1 to given attribute instance, or null reference.</returns>\r\n            <remarks>\r\n              Implementers should return <see cref=\"T:System.Reflection.Emit.CustomAttributeBuilder\"/> that corresponds to given attribute instance 1 to 1,\r\n              that is after calling specified constructor with specified arguments, and setting specified properties and fields with values specified\r\n              we should be able to get an attribute instance identical to the one passed in <paramref name=\"attribute\"/>. Implementer can return null\r\n              if it wishes to opt out of replicating the attribute. Notice however, that for some cases, like attributes passed explicitly by the user\r\n              it is illegal to return null, and doing so will result in exception.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.HandleError(System.Type,System.Exception)\">\r\n            <summary>\r\n              Handles error during disassembly process\r\n            </summary>\r\n            <param name = \"attributeType\">Type of the attribute being disassembled</param>\r\n            <param name = \"exception\">Exception thrown during the process</param>\r\n            <returns>usually null, or (re)throws the exception</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.InitializeConstructorArgs(System.Type,System.Attribute,System.Reflection.ParameterInfo[])\">\r\n            <summary>\r\n              Here we try to match a constructor argument to its value.\r\n              Since we can't get the values from the assembly, we use some heuristics to get it.\r\n              a/ we first try to match all the properties on the attributes by name (case insensitive) to the argument\r\n              b/ if we fail we try to match them by property type, with some smarts about convertions (i,e: can use Guid for string).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ReplaceIfBetterMatch(System.Reflection.ParameterInfo,System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n              We have the following rules here.\r\n              Try to find a matching type, failing that, if the parameter is string, get the first property (under the assumption that\r\n              we can convert it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.AttributeDisassembler.ConvertValue(System.Object,System.Type)\">\r\n            <summary>\r\n              Attributes can only accept simple types, so we return null for null,\r\n              if the value is passed as string we call to string (should help with converting), \r\n              otherwise, we use the value as is (enums, integer, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.BaseProxyGenerator\">\r\n            <summary>\r\n              Base class that exposes the common functionalities\r\n              to proxy generation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.AddMappingNoCheck(System.Type,Castle.DynamicProxy.Contributors.ITypeContributor,System.Collections.Generic.IDictionary{System.Type,Castle.DynamicProxy.Contributors.ITypeContributor})\">\r\n            <summary>\r\n              It is safe to add mapping (no mapping for the interface exists)\r\n            </summary>\r\n            <param name = \"implementer\"></param>\r\n            <param name = \"interface\"></param>\r\n            <param name = \"mapping\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.BaseProxyGenerator.GenerateParameterlessConstructor(Castle.DynamicProxy.Generators.Emitters.ClassEmitter,System.Type,Castle.DynamicProxy.Generators.Emitters.SimpleAST.FieldReference)\">\r\n            <summary>\r\n              Generates a parameters constructor that initializes the proxy\r\n              state with <see cref=\"T:Castle.DynamicProxy.StandardInterceptor\"/> just to make it non-null.\r\n              <para>\r\n                This constructor is important to allow proxies to be XML serializable\r\n              </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.InvocationTypeGenerator.GetBaseCtorArguments(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Reflection.ConstructorInfo@)\">\r\n            <summary>\r\n              Generates the constructor for the class that extends\r\n              <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/>\r\n            </summary>\r\n            <param name=\"targetFieldType\"></param>\r\n            <param name=\"proxyGenerationOptions\"></param>\r\n            <param name=\"baseConstructor\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.DefaultProxyBuilder\">\r\n            <summary>\r\n              Default implementation of <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> interface producing in-memory proxy assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IProxyBuilder\">\r\n            <summary>\r\n              Abstracts the implementation of proxy type construction.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"classToProxy\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"classToProxy\">The class type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified class and interfaces.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.ClassProxyGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type that proxies calls to <paramref name=\"interfaceToProxy\"/> members on <paramref name=\"targetType\"/>, implementing <paramref name=\"additionalInterfacesToProxy\"/>, using <paramref name=\"options\"/> provided.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"targetType\">Type implementing <paramref name=\"interfaceToProxy\"/> on which calls to the interface members should be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface that 'proceeds' executions to the specified target.\r\n              Additional interfaces should be only 'mark' interfaces, that is, they should work like interface proxy without target. (See <see cref=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\"/> method.)\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> and <parmaref name=\"additionalInterfacesToProxy\"/> that delegates all calls to the provided interceptors and allows interceptors to switch the actual target of invocation.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface(s) that delegate all executions to the specified interceptors\r\n              and uses an instance of the interface as their targets (i.e. <see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>), rather than a class. All <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> classes should then implement <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface,\r\n              to allow interceptors to switch invocation target with instance of another type implementing called interface.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithTargetInterfaceGenerator\"/>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyBuilder.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates a proxy type for given <paramref name=\"interfaceToProxy\"/> that delegates all calls to the provided interceptors.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface type to proxy.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types to proxy.</param>\r\n            <param name=\"options\">The proxy generation options.</param>\r\n            <returns>The generated proxy type.</returns>\r\n            <remarks>\r\n              Implementers should return a proxy type for the specified interface and additional interfaces that delegate all executions to the specified interceptors.\r\n            </remarks>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:Castle.DynamicProxy.Generators.GeneratorException\">Thrown when <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is not public.\r\n              Note that to avoid this exception, you can mark offending type internal, and define <see cref=\"T:System.Runtime.CompilerServices.InternalsVisibleToAttribute\"/> \r\n              pointing to Castle Dynamic Proxy assembly, in assembly containing that type, if this is appropriate.</exception>\r\n            <seealso cref=\"T:Castle.DynamicProxy.Generators.InterfaceProxyWithoutTargetGenerator\"/>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> logs to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\">\r\n            <summary>\r\n              Gets the <see cref=\"P:Castle.DynamicProxy.IProxyBuilder.ModuleScope\"/> associated with this builder.\r\n            </summary>\r\n            <value>The module scope associated with this builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class with new <see cref=\"P:Castle.DynamicProxy.DefaultProxyBuilder.ModuleScope\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.DefaultProxyBuilder.#ctor(Castle.DynamicProxy.ModuleScope)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.DefaultProxyBuilder\"/> class.\r\n            </summary>\r\n            <param name=\"scope\">The module scope for generated proxy types.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.AddDisassembler``1(Castle.DynamicProxy.IAttributeDisassembler)\">\r\n            <summary>\r\n              Registers custom disassembler to handle disassembly of specified type of attributes.\r\n            </summary>\r\n            <typeparam name=\"TAttribute\">Type of attributes to handle</typeparam>\r\n            <param name=\"disassembler\">Disassembler converting existing instances of Attributes to CustomAttributeBuilders</param>\r\n            <remarks>\r\n              When disassembling an attribute Dynamic Proxy will first check if an custom disassembler has been registered to handle attributes of that type, \r\n              and if none is found, it'll use the <see cref=\"P:Castle.DynamicProxy.Internal.AttributeUtil.FallbackDisassembler\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.AttributeUtil.ShouldSkipAttributeReplication(System.Type)\">\r\n            <summary>\r\n              Attributes should be replicated if they are non-inheritable,\r\n              but there are some special cases where the attributes means\r\n              something to the CLR, where they should be skipped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Reflection.MemberInfo,System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Target element. This is either target type or target method for invocation types.</param>\r\n            <param name=\"type\">The type of the proxy. This is base type for invocation types.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.CacheKey.#ctor(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.CacheKey\"/> class.\r\n            </summary>\r\n            <param name=\"target\">Type of the target.</param>\r\n            <param name=\"interfaces\">The interfaces.</param>\r\n            <param name=\"options\">The options.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdcOpCodesDictionary\">\r\n            <summary>\r\n              s\r\n              Provides appropriate Ldc.X opcode for the type of primitive value to be loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.LdindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Ldind.X opcode for \r\n              the type of primitive value to be loaded indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load indirect opcode of the appropriate type for a value or object reference.\r\n              Pops a pointer off the evaluation stack, dereferences it and loads\r\n              a value of the specified type.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForConstantValue(System.Reflection.Emit.ILGenerator,System.Object)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for a constant string or\r\n              primitive value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"value\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitLoadOpCodeForDefaultValueOfType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a load opcode of the appropriate kind for the constant default value of a\r\n              type, such as 0 for value types and null for reference types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.OpCodeUtil.EmitStoreIndirectOpCodeForType(System.Reflection.Emit.ILGenerator,System.Type)\">\r\n            <summary>\r\n              Emits a store indirectopcode of the appropriate type for a value or object reference.\r\n              Pops a value of the specified type and a pointer off the evaluation stack, and\r\n              stores the value.\r\n            </summary>\r\n            <param name = \"gen\"></param>\r\n            <param name = \"type\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.PropertiesCollection\">\r\n            <summary>\r\n              Summary description for PropertiesCollection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.IndirectReference\">\r\n            <summary>\r\n              Wraps a reference that is passed \r\n              ByRef and provides indirect load/store support.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.NewArrayExpression\">\r\n            <summary>\r\n              Summary description for NewArrayExpression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.SimpleAST.ReferencesToObjectArrayExpression\">\r\n            <summary>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.Emitters.StindOpCodesDictionary\">\r\n            <summary>\r\n              Provides appropriate Stind.X opcode \r\n              for the type of primitive value to be stored indirectly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.Emitters.TypeUtil.GetAllInterfaces(System.Type[])\">\r\n            <summary>\r\n              Returns list of all unique interfaces implemented given types, including their base interfaces.\r\n            </summary>\r\n            <param name = \"types\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.MetaEvent.#ctor(System.String,System.Type,System.Type,Castle.DynamicProxy.Generators.MetaMethod,Castle.DynamicProxy.Generators.MetaMethod,System.Reflection.EventAttributes)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.Generators.MetaEvent\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"declaringType\">Type declaring the original event being overriten, or null.</param>\r\n            <param name=\"eventDelegateType\"></param>\r\n            <param name=\"adder\">The add method.</param>\r\n            <param name=\"remover\">The remove method.</param>\r\n            <param name=\"attributes\">The attributes.</param>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.INamingScope\">\r\n            <summary>\r\n              Represents the scope of uniquenes of names for types and their members\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\">\r\n            <summary>\r\n              Gets a unique name based on <paramref name=\"suggestedName\"/>\r\n            </summary>\r\n            <param name=\"suggestedName\">Name suggested by the caller</param>\r\n            <returns>Unique name based on <paramref name=\"suggestedName\"/>.</returns>\r\n            <remarks>\r\n              Implementers should provide name as closely resembling <paramref name=\"suggestedName\"/> as possible.\r\n              Generally if no collision occurs it is suggested to return suggested name, otherwise append sequential suffix.\r\n              Implementers must return deterministic names, that is when <see cref=\"M:Castle.DynamicProxy.Generators.INamingScope.GetUniqueName(System.String)\"/> is called twice \r\n              with the same suggested name, the same returned name should be provided each time. Non-deterministic return\r\n              values, like appending random suffices will break serialization of proxies.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Generators.INamingScope.SafeSubScope\">\r\n            <summary>\r\n              Returns new, disposable naming scope. It is responsibilty of the caller to make sure that no naming collision\r\n              with enclosing scope, or other subscopes is possible.\r\n            </summary>\r\n            <returns>New naming scope.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Generators.MethodFinder\">\r\n            <summary>\r\n              Returns the methods implemented by a type. Use this instead of Type.GetMethods() to work around a CLR issue\r\n              where duplicate MethodInfos are returned by Type.GetMethods() after a token of a generic type's method was loaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternal(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Determines whether the specified method is internal.\r\n            </summary>\r\n            <param name = \"method\">The method.</param>\r\n            <returns>\r\n              <c>true</c> if the specified method is internal; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsInternalToDynamicProxy(System.Reflection.Assembly)\">\r\n            <summary>\r\n              Determines whether this assembly has internals visible to dynamic proxy.\r\n            </summary>\r\n            <param name = \"asm\">The assembly to inspect.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.Internal.InternalsUtil.IsAccessible(System.Reflection.MethodBase)\">\r\n            <summary>\r\n              Checks if the method is public or protected.\r\n            </summary>\r\n            <param name = \"method\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.MixinData.#ctor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n              Because we need to cache the types based on the mixed in mixins, we do the following here:\r\n              - Get all the mixin interfaces\r\n              - Sort them by full name\r\n              - Return them by position\r\n            \r\n            The idea is to have reproducible behavior for the case that mixins are registered in different orders.\r\n            This method is here because it is required \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ModuleScope\">\r\n            <summary>\r\n              Summary description for ModuleScope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\">\r\n            <summary>\r\n              The default file name used when the assembly is saved using <see cref=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_FILE_NAME\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.DynamicProxy.ModuleScope.DEFAULT_ASSEMBLY_NAME\">\r\n            <summary>\r\n              The default assembly (simple) name used for the assemblies generated by a <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class; assemblies created by this instance will not be saved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.#ctor(System.Boolean,System.Boolean,Castle.DynamicProxy.Generators.INamingScope,System.String,System.String,System.String,System.String)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> class, allowing to specify whether the assemblies generated by this instance\r\n              should be saved and what simple names are to be assigned to them.\r\n            </summary>\r\n            <param name=\"savePhysicalAssembly\">If set to <c>true</c> saves the generated module.</param>\r\n            <param name=\"disableSignedModule\">If set to <c>true</c> disables ability to generate signed module. This should be used in cases where ran under constrained permissions.</param>\r\n            <param name=\"namingScope\">Naming scope used to provide unique names to generated types and their members (usually via sub-scopes).</param>\r\n            <param name=\"strongAssemblyName\">The simple name of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"strongModulePath\">The path and file name of the manifest module of the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakAssemblyName\">The simple name of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n            <param name=\"weakModulePath\">The path and file name of the manifest module of the weak-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetFromCache(Castle.DynamicProxy.Generators.CacheKey)\">\r\n            <summary>\r\n              Returns a type from this scope's type cache, or null if the key cannot be found.\r\n            </summary>\r\n            <param name = \"key\">The key to be looked up in the cache.</param>\r\n            <returns>The type from this scope's type cache matching the key, or null if the key cannot be found</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.RegisterInCache(Castle.DynamicProxy.Generators.CacheKey,System.Type)\">\r\n            <summary>\r\n              Registers a type in this scope's type cache.\r\n            </summary>\r\n            <param name = \"key\">The key to be associated with the type.</param>\r\n            <param name = \"type\">The type to be stored in the cache.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.GetKeyPair\">\r\n            <summary>\r\n              Gets the key pair used to sign the strong-named assembly generated by this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/>.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModule(System.Boolean)\">\r\n            <summary>\r\n              Gets the specified module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <param name = \"isStrongNamed\">If set to true, a strong-named module is returned; otherwise, a weak-named module is returned.</param>\r\n            <returns>A strong-named or weak-named module generated by this scope, as specified by the <paramref\r\n               name = \"isStrongNamed\" /> parameter.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithStrongName\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A strong-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, creating a new one if none has yet been generated.\r\n            </summary>\r\n            <returns>A weak-named module generated by this scope.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.Lock\">\r\n            <summary>\r\n              Users of this <see cref=\"T:Castle.DynamicProxy.ModuleScope\"/> should use this lock when accessing the cache.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModule\">\r\n            <summary>\r\n              Gets the strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The strong-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.StrongNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the strongly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the strongly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModule\">\r\n            <summary>\r\n              Gets the weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.\r\n            </summary>\r\n            <value>The weak-named module generated by this scope, or <see langword = \"null\" /> if none has yet been generated.</value>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ModuleScope.WeakNamedModuleName\">\r\n            <summary>\r\n              Gets the file name of the weakly named module generated by this scope.\r\n            </summary>\r\n            <value>The file name of the weakly named module generated by this scope.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor(Castle.DynamicProxy.IProxyGenerationHook)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n            <param name=\"hook\">The hook.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerationOptions.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerationOptions\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.ProxyGenerator\">\r\n            <summary>\r\n              Provides proxy objects for classes and interfaces.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor(Castle.DynamicProxy.IProxyBuilder)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n            <param name=\"builder\">Proxy types builder.</param>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.#ctor\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/>is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types  on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method generates new proxy type for each type of <paramref name=\"target\"/>, which affects performance. If you don't want to proxy types differently depending on the type of the target\r\n              use <see cref=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\"/> method.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithTargetInterface(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on <paramref name=\"target\"/> object with given <paramref name=\"interceptors\"/>.\r\n              Interceptors can use <see cref=\"T:Castle.DynamicProxy.IChangeProxyTarget\"/> interface to provide other target for method invocation than default <paramref name=\"target\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface implemented by <paramref name=\"target\"/> which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on <paramref name=\"target\"/> object or alternative implementation swapped at runtime by an interceptor.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"target\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"target\"/> does not implement <paramref name=\"interfaceToProxy\"/> interface.</exception>\r\n            <exception cref=\"T:System.MissingMethodException\">Thrown when no default constructor exists on actual type of <paramref name=\"target\"/> object.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of actual type of <paramref name=\"target\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <typeparamref name=\"TInterface\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">Type of the interface which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <typeparamref name=\"TInterface\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TInterface\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              As a result of that also at least one <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementation must be provided.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor)\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptor\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptor\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptor\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> type on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of interfaces to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/>  is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to members of interface <paramref name=\"interfaceToProxy\"/> on target object generated at runtime with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">Type of the interface which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              Object proxying calls to members of <paramref name=\"interfaceToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types on generated target object.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interfaceToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"interceptors\"/> array is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"interfaceToProxy\"/> is not an interface type.</exception>\r\n            <remarks>\r\n              Since this method uses an empty-shell implementation of <paramref name=\"additionalInterfacesToProxy\"/> to proxy generated at runtime, the actual implementation of proxied methods must be provided by given <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations.\r\n              They are responsible for setting return value (and out parameters) on proxied methods. It is also illegal for an interceptor to call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/>, since there's no actual implementation to proceed with.\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget``1(``0,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyWithTarget(System.Type,System.Type[],System.Object,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"target\">The target object, calls to which will be intercepted.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy``1(Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <typeparamref name=\"TClass\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <typeparam name=\"TClass\">Type of class which will be proxied.</typeparam>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <typeparamref name=\"TClass\"/> proxying calls to virtual members of <typeparamref name=\"TClass\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <typeparamref name=\"TClass\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <typeparamref name=\"TClass\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <typeparamref name=\"TClass\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no parameterless constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> type.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no default constructor exists on type <paramref name=\"classToProxy\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when default constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions,System.Object[],Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Creates proxy object intercepting calls to virtual members of type <paramref name=\"classToProxy\"/> on newly created instance of that type with given <paramref name=\"interceptors\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">Type of class which will be proxied.</param>\r\n            <param name=\"additionalInterfacesToProxy\">Additional interface types. Calls to their members will be proxied as well.</param>\r\n            <param name=\"options\">The proxy generation options used to influence generated proxy type and object.</param>\r\n            <param name=\"constructorArguments\">Arguments of constructor of type <paramref name=\"classToProxy\"/> which should be used to create a new instance of that type.</param>\r\n            <param name=\"interceptors\">The interceptors called during the invocation of proxied methods.</param>\r\n            <returns>\r\n              New object of type <paramref name=\"classToProxy\"/> proxying calls to virtual members of <paramref name=\"classToProxy\"/> and <paramref name=\"additionalInterfacesToProxy\"/> types.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"classToProxy\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">Thrown when given <paramref name=\"options\"/> object is a null reference (Nothing in Visual Basic).</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> or any of <paramref name=\"additionalInterfacesToProxy\"/> is a generic type definition.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when given <paramref name=\"classToProxy\"/> is not a class type.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">Thrown when no constructor exists on type <paramref name=\"classToProxy\"/> with parameters matching <paramref name=\"constructorArguments\"/>.</exception>\r\n            <exception cref=\"T:System.Reflection.TargetInvocationException\">Thrown when constructor of type <paramref name=\"classToProxy\"/> throws an exception.</exception>\r\n            <remarks>\r\n              This method uses <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation to generate a proxy type.\r\n              As such caller should expect any type of exception that given <see cref=\"T:Castle.DynamicProxy.IProxyBuilder\"/> implementation may throw.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateClassProxyType(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for class proxy with given <paramref name=\"classToProxy\"/> class, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"classToProxy\">The base class for proxy type.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The interfaces that proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTarget(System.Type,System.Type[],System.Type,Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"targetType\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"targetType\">Actual type that the proxy type will encompass.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithTargetInterface(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy with target interface for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> on given <paramref name=\"interfaceToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyTypeWithoutTarget(System.Type,System.Type[],Castle.DynamicProxy.ProxyGenerationOptions)\">\r\n            <summary>\r\n              Creates the proxy type for interface proxy without target for given <paramref name=\"interfaceToProxy\"/> interface, implementing given <paramref name=\"additionalInterfacesToProxy\"/> and using provided <paramref name=\"options\"/>.\r\n            </summary>\r\n            <param name=\"interfaceToProxy\">The interface proxy type should implement.</param>\r\n            <param name=\"additionalInterfacesToProxy\">The additional interfaces proxy type should implement.</param>\r\n            <param name=\"options\">The options for proxy generation process.</param>\r\n            <returns><see cref=\"T:System.Type\"/> of proxy.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.Logger\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:Castle.Core.Logging.ILogger\"/> that this <see cref=\"T:Castle.DynamicProxy.ProxyGenerator\"/> log to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.DynamicProxy.ProxyGenerator.ProxyBuilder\">\r\n            <summary>\r\n              Gets the proxy builder instance used to generate proxy types.\r\n            </summary>\r\n            <value>The proxy builder.</value>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.SilverlightExtensions.Extensions.IsNested(System.Type)\">\r\n            <summary>\r\n            The silverlight System.Type is missing the IsNested property so this exposes similar functionality.\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.Tokens.InvocationMethods\">\r\n            <summary>\r\n              Holds <see cref=\"T:System.Reflection.MethodInfo\"/> objects representing methods of <see cref=\"T:Castle.DynamicProxy.AbstractInvocation\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptorSelector\">\r\n            <summary>\r\n              Provides an extension point that allows proxies to choose specific interceptors on\r\n              a per method basis.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IInterceptorSelector.SelectInterceptors(System.Type,System.Reflection.MethodInfo,Castle.DynamicProxy.IInterceptor[])\">\r\n            <summary>\r\n              Selects the interceptors that should intercept calls to the given <paramref name=\"method\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type declaring the method to intercept.</param>\r\n            <param name=\"method\">The method that will be intercepted.</param>\r\n            <param name=\"interceptors\">All interceptors registered with the proxy.</param>\r\n            <returns>An array of interceptors to invoke upon calling the <paramref name=\"method\"/>.</returns>\r\n            <remarks>\r\n              This method is called only once per proxy instance, upon the first call to the\r\n              <paramref name=\"method\"/>. Either an empty array or null are valid return values to indicate\r\n              that no interceptor should intercept calls to the method. Although it is not advised, it is\r\n              legal to return other <see cref=\"T:Castle.DynamicProxy.IInterceptor\"/> implementations than these provided in\r\n              <paramref name=\"interceptors\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Internal.Lock.Create\">\r\n            <summary>\r\n            Creates a new lock.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderExAccessor\">\r\n            <summary>\r\n            This interface should be implemented by classes\r\n            that are available in a bigger context, exposing\r\n            the container to different areas in the same application.\r\n            <para>\r\n            For example, in Web application, the (global) HttpApplication\r\n            subclasses should implement this interface to expose \r\n            the configured container\r\n            </para>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IChangeProxyTarget\">\r\n            <summary>\r\n              Exposes means to change target objects of proxies and invocations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeInvocationTarget(System.Object)\">\r\n            <summary>\r\n              Changes the target object (<see cref=\"P:Castle.DynamicProxy.IInvocation.InvocationTarget\"/>) of current <see cref=\"T:Castle.DynamicProxy.IInvocation\"/>.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of invocation.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to <see cref=\"P:Castle.DynamicProxy.IInvocation.TargetType\"/>, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IChangeProxyTarget.ChangeProxyTarget(System.Object)\">\r\n            <summary>\r\n              Permanently changes the target object of the proxy. This does not affect target of the current invocation.\r\n            </summary>\r\n            <param name=\"target\">The new value of target of the proxy.</param>\r\n            <remarks>\r\n              Although the method takes <see cref=\"T:System.Object\"/> the actual instance must be of type assignable to proxy's target type, otherwise an <see cref=\"T:System.InvalidCastException\"/> will be thrown.\r\n              Also while it's technically legal to pass null reference (Nothing in Visual Basic) as <paramref name=\"target\"/>, for obvious reasons Dynamic Proxy will not be able to call the intercepted method on such target.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.NotImplementedException\"/> will be throws.\r\n              Also while it's technically legal to pass proxy itself as <paramref name=\"target\"/>, this would create stack overflow.\r\n              In this case last interceptor in the pipeline mustn't call <see cref=\"M:Castle.DynamicProxy.IInvocation.Proceed\"/> or a <see cref=\"T:System.InvalidOperationException\"/> will be throws.\r\n            </remarks>\r\n            <exception cref=\"T:System.InvalidCastException\">Thrown when <paramref name=\"target\"/> is not assignable to the proxied type.</exception>\r\n        </member>\r\n        <member name=\"T:Castle.DynamicProxy.IInterceptor\">\r\n            <summary>\r\n              New interface that is going to be used by DynamicProxy 2\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.DynProxyGetTarget\">\r\n            <summary>\r\n              Get the proxy target (note that null is a valid target!)\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.DynamicProxy.IProxyTargetAccessor.GetInterceptors\">\r\n            <summary>\r\n              Gets the interceptors for the proxy\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceEnabledComponent\">\r\n            <summary>\r\n            Defines that the implementation wants a \r\n            <see cref=\"T:System.IServiceProvider\"/> in order to \r\n            access other components. The creator must be aware\r\n            that the component might (or might not) implement \r\n            the interface.\r\n            </summary>\r\n            <remarks>\r\n            Used by Castle Project components to, for example, \r\n            gather logging factories\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.IServiceProviderEx\">\r\n            <summary>\r\n            Increments <c>IServiceProvider</c> with a generic service resolution operation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLoggerFactory\">\r\n            <summary>\r\n              Provides a factory that can produce either <see cref=\"T:Castle.Core.Logging.ILogger\"/> or\r\n              <see cref=\"T:Castle.Core.Logging.IExtendedLogger\"/> classes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILoggerFactory\">\r\n            <summary>\r\n              Manages the instantiation of <see cref=\"T:Castle.Core.Logging.ILogger\"/>s.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.IExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.Type,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger, getting the logger name from the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.Castle#Core#Logging#ILoggerFactory#Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractExtendedLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IContextProperties\">\r\n            <summary>\r\n              Interface for Context Properties implementations\r\n            </summary>\r\n            <remarks>\r\n              <para>\r\n                This interface defines a basic property get set accessor.\r\n              </para>\r\n              <para>\r\n                Based on the ContextPropertiesBase of log4net, by Nicko Cadell.\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IContextProperties.Item(System.String)\">\r\n            <summary>\r\n              Gets or sets the value of a property\r\n            </summary>\r\n            <value>\r\n              The value for the property with the specified key\r\n            </value>\r\n            <remarks>\r\n              <para>\r\n                Gets or sets the value of a property\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.AbstractLoggerFactory.GetConfigFile(System.String)\">\r\n            <summary>\r\n              Gets the configuration file.\r\n            </summary>\r\n            <param name = \"fileName\">i.e. log4net.config</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogFactory\">\r\n            <summary>\r\n            NullLogFactory used when logging is turned off.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogFactory.Create(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates an instance of ILogger with the specified name and LoggerLevel.\r\n            </summary>\r\n            <param name = \"name\">Name.</param>\r\n            <param name = \"level\">Level.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.IExtendedLogger\">\r\n            <summary>\r\n              Provides an interface that supports <see cref=\"T:Castle.Core.Logging.ILogger\"/> and\r\n              allows the storage and retrieval of Contexts. These are supported in\r\n              both log4net and NLog.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ILogger\">\r\n            <summary>\r\n              Manages logging.\r\n            </summary>\r\n            <remarks>\r\n              This is a facade for the different logging subsystems.\r\n              It offers a simplified interface that follows IOC patterns\r\n              and a simplified priority/level/severity abstraction.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Create a new child logger.\r\n              The name of the child logger is [current-loggers-name].[passed-in-name]\r\n            </summary>\r\n            <param name=\"loggerName\">The Subname of this logger.</param>\r\n            <returns>The New ILogger instance.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">If the name has an empty element name.</exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a debug message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.Func{System.String})\">\r\n            <summary>\r\n              Logs an error message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a fatal message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a info message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.Func{System.String})\">\r\n            <summary>\r\n              Logs a warn message with lazily constructed message. The message will be constructed only if the <see cref=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\"/> is true.\r\n            </summary>\r\n            <param name=\"messageFactory\"></param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ILogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value>True if \"debug\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value>True if \"error\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value>True if \"fatal\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value>True if \"info\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.ILogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value>True if \"warn\" messages will be logged.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.GlobalProperties\">\r\n            <summary>\r\n              Exposes the Global Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadProperties\">\r\n            <summary>\r\n              Exposes the Thread Context of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.IExtendedLogger.ThreadStacks\">\r\n            <summary>\r\n              Exposes the Thread Stack of the extended logger.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.ConsoleLogger\">\r\n            <summary>\r\n            The Logger sending everything to the standard output streams.\r\n            This is mainly for the cases when you have a utility that\r\n            does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.LevelFilteredLogger\">\r\n            <summary>\r\n            The Level Filtered Logger class.  This is a base clase which\r\n            provides a LogLevel attribute and reroutes all functions into\r\n            one Log method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.#ctor\">\r\n            <summary>\r\n              Creates a new <c>LevelFilteredLogger</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a debug message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an info message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a warn message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs an error message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"message\">The message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              Logs a fatal message.\r\n            </summary>\r\n            <param name = \"exception\">The exception to log</param>\r\n            <param name = \"formatProvider\">The format provider to use</param>\r\n            <param name = \"format\">Format string for the message to log</param>\r\n            <param name = \"args\">Format arguments for the message to log</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.LevelFilteredLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              Implementors output the log content by implementing this method only.\r\n              Note that exception can be null\r\n            </summary>\r\n            <param name = \"loggerLevel\"></param>\r\n            <param name = \"loggerName\"></param>\r\n            <param name = \"message\"></param>\r\n            <param name = \"exception\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Level\">\r\n            <value>\r\n              The <c>LoggerLevel</c> that this logger\r\n              will be using. Defaults to <c>LoggerLevel.Off</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.Name\">\r\n            <value>\r\n              The name that this logger will be using. \r\n              Defaults to <c>String.Empty</c>\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsDebugEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"debug\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Debug\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsInfoEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"info\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Info\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsWarnEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"warn\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Warn\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsErrorEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"error\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Error\"/> bit</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.LevelFilteredLogger.IsFatalEnabled\">\r\n            <summary>\r\n              Determines if messages of priority \"fatal\" will be logged.\r\n            </summary>\r\n            <value><c>true</c> if log level flags include the <see cref=\"F:Castle.Core.Logging.LoggerLevel.Fatal\"/> bit</value>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c> and the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Name</c>\r\n              set to <c>String.Empty</c>.\r\n            </summary>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger with the <c>Level</c>\r\n              set to <c>LoggerLevel.Debug</c>.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.#ctor(System.String,Castle.Core.Logging.LoggerLevel)\">\r\n            <summary>\r\n              Creates a new ConsoleLogger.\r\n            </summary>\r\n            <param name = \"name\">The logs Name.</param>\r\n            <param name = \"logLevel\">The logs Level.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.Log(Castle.Core.Logging.LoggerLevel,System.String,System.String,System.Exception)\">\r\n            <summary>\r\n              A Common method to log.\r\n            </summary>\r\n            <param name = \"loggerLevel\">The level of logging</param>\r\n            <param name = \"loggerName\">The name of the logger</param>\r\n            <param name = \"message\">The Message</param>\r\n            <param name = \"exception\">The Exception</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.ConsoleLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns a new <c>ConsoleLogger</c> with the name\r\n              added after this loggers name, with a dot in between.\r\n            </summary>\r\n            <param name = \"loggerName\">The added hierarchical name.</param>\r\n            <returns>A new <c>ConsoleLogger</c>.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.NullLogger\">\r\n            <summary>\r\n              The Null Logger class.  This is useful for implementations where you need\r\n              to provide a logger to a utility class, but do not want any output from it.\r\n              It also helps when you have a utility that does not have a logger to supply.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.CreateChildLogger(System.String)\">\r\n            <summary>\r\n              Returns this <c>NullLogger</c>.\r\n            </summary>\r\n            <param name = \"loggerName\">Ignored</param>\r\n            <returns>This ILogger instance.</returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Debug(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.DebugFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Error(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.ErrorFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Fatal(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.FatalFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Info(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.InfoFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.Warn(System.String,System.Exception)\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"message\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.NullLogger.WarnFormat(System.Exception,System.IFormatProvider,System.String,System.Object[])\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <param name = \"exception\">Ignored</param>\r\n            <param name = \"formatProvider\">Ignored</param>\r\n            <param name = \"format\">Ignored</param>\r\n            <param name = \"args\">Ignored</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.GlobalProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadProperties\">\r\n            <summary>\r\n              Returns empty context properties.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.ThreadStacks\">\r\n            <summary>\r\n              Returns empty context stacks.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsDebugEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsErrorEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsFatalEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsInfoEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Logging.NullLogger.IsWarnEnabled\">\r\n            <summary>\r\n              No-op.\r\n            </summary>\r\n            <value>false</value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Logging.StreamLogger\">\r\n            <summary>\r\n            The Stream Logger class.  This class can stream log information\r\n            to any stream, it is suitable for storing a log file to disk,\r\n            or to a <c>MemoryStream</c> for testing your components.\r\n            </summary>\r\n            <remarks>\r\n            This logger is not thread safe.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default encoding \r\n              and buffer size. Initial Level is set to Debug.\r\n            </summary>\r\n            <param name = \"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name = \"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with default buffer size.\r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.Stream,System.Text.Encoding,System.Int32)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c>. \r\n              Initial Level is set to Debug.\r\n            </summary>\r\n            <param name=\"name\">\r\n              The name of the log.\r\n            </param>\r\n            <param name=\"stream\">\r\n              The stream that will be used for logging,\r\n              seeking while the logger is alive \r\n            </param>\r\n            <param name=\"encoding\">\r\n              The encoding that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n            <param name=\"bufferSize\">\r\n              The buffer size that will be used for this stream.\r\n              <see cref=\"T:System.IO.StreamWriter\"/>\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Logging.StreamLogger.#ctor(System.String,System.IO.StreamWriter)\">\r\n            <summary>\r\n              Creates a new <c>StreamLogger</c> with \r\n              Debug as default Level.\r\n            </summary>\r\n            <param name = \"name\">The name of the log.</param>\r\n            <param name = \"writer\">The <c>StreamWriter</c> the log will write to.</param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.AbstractConfiguration\">\r\n            <summary>\r\n              This is an abstract <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> implementation\r\n              that deals with methods that can be abstracted away\r\n              from underlying implementations.\r\n            </summary>\r\n            <remarks>\r\n              <para><b>AbstractConfiguration</b> makes easier to implementers \r\n                to create a new version of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/></para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.IConfiguration\">\r\n            <summary>\r\n            <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> is a interface encapsulating a configuration node\r\n            used to retrieve configuration values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.IConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n            Gets the value of the node and converts it \r\n            into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n            The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Name\">\r\n            <summary>\r\n            Gets the name of the node.\r\n            </summary>\r\n            <value>\r\n            The Name of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of the node.\r\n            </summary>\r\n            <value>\r\n            The Value of the node.\r\n            </value> \r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Children\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>\r\n            elements containing all node children.\r\n            </summary>\r\n            <value>The Collection of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.IConfiguration.Attributes\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.IDictionary\"/> of the configuration attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.AbstractConfiguration.GetValue(System.Type,System.Object)\">\r\n            <summary>\r\n              Gets the value of the node and converts it\r\n              into specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/></param>\r\n            <param name=\"defaultValue\">\r\n              The Default value returned if the conversion fails.\r\n            </param>\r\n            <returns>The Value converted into the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Attributes\">\r\n            <summary>\r\n              Gets node attributes.\r\n            </summary>\r\n            <value>\r\n              All attributes of the node.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Children\">\r\n            <summary>\r\n              Gets all child nodes.\r\n            </summary>\r\n            <value>The <see cref=\"T:Castle.Core.Configuration.ConfigurationCollection\"/> of child nodes.</value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Name\">\r\n            <summary>\r\n              Gets the name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Name of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.AbstractConfiguration.Value\">\r\n            <summary>\r\n              Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n              The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.ConfigurationCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.ConfigurationCollection.#ctor(System.Collections.Generic.IEnumerable{Castle.Core.Configuration.IConfiguration})\">\r\n            <summary>\r\n            Creates a new instance of <c>ConfigurationCollection</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Configuration.MutableConfiguration\">\r\n            <summary>\r\n            Summary description for MutableConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Configuration.MutableConfiguration.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Castle.Core.Configuration.MutableConfiguration\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Configuration.MutableConfiguration.Value\">\r\n            <summary>\r\n            Gets the value of <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </summary>\r\n            <value>\r\n            The Value of the <see cref=\"T:Castle.Core.Configuration.IConfiguration\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Pair`2\">\r\n            <summary>\r\n            General purpose class to represent a standard pair of values. \r\n            </summary>\r\n            <typeparam name=\"TFirst\">Type of the first value</typeparam>\r\n            <typeparam name=\"TSecond\">Type of the second value</typeparam>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Pair`2.#ctor(`0,`1)\">\r\n            <summary>\r\n            Constructs a pair with its values\r\n            </summary>\r\n            <param name=\"first\"></param>\r\n            <param name=\"second\"></param>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ProxyServices\">\r\n            <summary>\r\n            List of utility methods related to dynamic proxy operations\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ProxyServices.IsDynamicProxy(System.Type)\">\r\n            <summary>\r\n            Determines whether the specified type is a proxy generated by\r\n            DynamicProxy (1 or 2).\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>\r\n            \t<c>true</c> if it is a proxy; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\">\r\n            <summary>\r\n            Readonly implementation of <see cref=\"T:System.Collections.IDictionary\"/> which uses an anonymous object as its source. Uses names of properties as keys, and property values as... well - values. Keys are not case sensitive.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.#ctor(System.Object)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:Castle.Core.ReflectionBasedDictionaryAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"target\">The target.</param>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Add(System.Object,System.Object)\">\r\n            <summary>\r\n              Adds an element with the provided key and value to the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The <see cref = \"T:System.Object\" /> to use as the key of the element to add.</param>\r\n            <param name = \"value\">The <see cref = \"T:System.Object\" /> to use as the value of the element to add.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">An element with the same key already exists in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Clear\">\r\n            <summary>\r\n              Removes all elements from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Contains(System.Object)\">\r\n            <summary>\r\n              Determines whether the <see cref = \"T:System.Collections.IDictionary\" /> object contains an element with the specified key.\r\n            </summary>\r\n            <param name = \"key\">The key to locate in the <see cref = \"T:System.Collections.IDictionary\" /> object.</param>\r\n            <returns>\r\n              true if the <see cref = \"T:System.Collections.IDictionary\" /> contains an element with the key; otherwise, false.\r\n            </returns>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Remove(System.Object)\">\r\n            <summary>\r\n              Removes the element with the specified key from the <see cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <param name = \"key\">The key of the element to remove.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"key\" /> is null. </exception>\r\n            <exception cref = \"T:System.NotSupportedException\">The <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.-or- The <see\r\n               cref = \"T:System.Collections.IDictionary\" /> has a fixed size. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IEnumerator\" /> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\">\r\n            <summary>\r\n              Copies the elements of the <see cref = \"T:System.Collections.ICollection\" /> to an <see cref = \"T:System.Array\" />, starting at a particular <see\r\n               cref = \"T:System.Array\" /> index.\r\n            </summary>\r\n            <param name = \"array\">The one-dimensional <see cref = \"T:System.Array\" /> that is the destination of the elements copied from <see\r\n               cref = \"T:System.Collections.ICollection\" />. The <see cref = \"T:System.Array\" /> must have zero-based indexing.</param>\r\n            <param name = \"index\">The zero-based index in <paramref name = \"array\" /> at which copying begins.</param>\r\n            <exception cref = \"T:System.ArgumentNullException\">\r\n              <paramref name = \"array\" /> is null. </exception>\r\n            <exception cref = \"T:System.ArgumentOutOfRangeException\">\r\n              <paramref name = \"index\" /> is less than zero. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">\r\n              <paramref name = \"array\" /> is multidimensional.-or- <paramref name = \"index\" /> is equal to or greater than the length of <paramref\r\n               name = \"array\" />.-or- The number of elements in the source <see cref = \"T:System.Collections.ICollection\" /> is greater than the available space from <paramref\r\n               name = \"index\" /> to the end of the destination <paramref name = \"array\" />. </exception>\r\n            <exception cref = \"T:System.ArgumentException\">The type of the source <see cref = \"T:System.Collections.ICollection\" /> cannot be cast automatically to the type of the destination <paramref\r\n               name = \"array\" />. </exception>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#GetEnumerator\">\r\n            <summary>\r\n              Returns an <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <returns>\r\n              An <see cref = \"T:System.Collections.IDictionaryEnumerator\" /> object for the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.ReflectionBasedDictionaryAdapter.Read(System.Collections.IDictionary,System.Object)\">\r\n            <summary>\r\n              Reads values of properties from <paramref name = \"valuesAsAnonymousObject\" /> and inserts them into <paramref\r\n               name = \"targetDictionary\" /> using property names as keys.\r\n            </summary>\r\n            <param name = \"targetDictionary\"></param>\r\n            <param name = \"valuesAsAnonymousObject\"></param>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Count\">\r\n            <summary>\r\n              Gets the number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>The number of elements contained in the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsSynchronized\">\r\n            <summary>\r\n              Gets a value indicating whether access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe).\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if access to the <see cref = \"T:System.Collections.ICollection\" /> is synchronized (thread safe); otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.SyncRoot\">\r\n            <summary>\r\n              Gets an object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An object that can be used to synchronize access to the <see cref = \"T:System.Collections.ICollection\" />.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.IsReadOnly\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object is read-only; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Item(System.Object)\">\r\n            <summary>\r\n              Gets or sets the <see cref=\"T:System.Object\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Keys\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the keys of the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.Values\">\r\n            <summary>\r\n              Gets an <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.\r\n            </summary>\r\n            <value></value>\r\n            <returns>An <see cref = \"T:System.Collections.ICollection\" /> object containing the values in the <see\r\n               cref = \"T:System.Collections.IDictionary\" /> object.</returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.ReflectionBasedDictionaryAdapter.System#Collections#IDictionary#IsFixedSize\">\r\n            <summary>\r\n              Gets a value indicating whether the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size.\r\n            </summary>\r\n            <value></value>\r\n            <returns>true if the <see cref = \"T:System.Collections.IDictionary\" /> object has a fixed size; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResource\">\r\n            <summary>\r\n            Represents a 'streamable' resource. Can\r\n            be a file, a resource in an assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.GetStreamReader(System.Text.Encoding)\">\r\n            <summary>\r\n            Returns a reader for the stream\r\n            </summary>\r\n            <remarks>\r\n            It's up to the caller to dispose the reader.\r\n            </remarks>\r\n            <param name=\"encoding\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResource.CreateRelative(System.String)\">\r\n            <summary>\r\n            Returns an instance of <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            created according to the <c>relativePath</c>\r\n            using itself as the root.\r\n            </summary>\r\n            <param name=\"relativePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:Castle.Core.Resource.IResource.FileBasePath\">\r\n            <summary>\r\n            \r\n            </summary>\r\n            <remarks>\r\n            Only valid for resources that\r\n            can be obtained through relative paths\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.AbstractStreamResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Castle.Core.Resource.AbstractStreamResource.createStream\">\r\n            <summary>\r\n            This returns a new stream instance each time it is called.\r\n            It is the responsibility of the caller to dispose of this stream\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.IResourceFactory\">\r\n            <summary>\r\n            Depicts the contract for resource factories.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Accept(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Used to check whether the resource factory\r\n            is able to deal with the given resource\r\n            identifier.\r\n            </summary>\r\n            <remarks>\r\n            Implementors should return <c>true</c>\r\n            only if the given identifier is supported\r\n            by the resource factory\r\n            </remarks>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Castle.Core.Resource.IResourceFactory.Create(Castle.Core.Resource.CustomUri,System.String)\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Castle.Core.Resource.IResource\"/> instance\r\n            for the given resource identifier\r\n            </summary>\r\n            <param name=\"uri\"></param>\r\n            <param name=\"basePath\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.FileResource\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.StaticContentResource\">\r\n            <summary>\r\n            Adapts a static string content as an <see cref=\"T:Castle.Core.Resource.IResource\"/>\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Castle.Core.Resource.UncResource\">\r\n            <summary>\r\n            Enable access to files on network shares\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Castle.Core.3.0.0.4001/readme.txt",
    "content": "You can find full list of changes in changes.txt\r\n\r\nIssue tracker: \t\t- http://issues.castleproject.org/dashboard\r\n\r\nDocumentation (work in progress):\r\nDictionary Adapter\t- http://docs.castleproject.org/Tools.Castle-DictionaryAdapter.ashx\r\nDynamicProxy\t\t- http://docs.castleproject.org/Tools.DynamicProxy.ashx\r\nDiscusssion group: \t- http://groups.google.com/group/castle-project-users\r\nStackOverflow tags:\t- castle-dynamicproxy, castle-dictionaryadapter, castle"
  },
  {
    "path": "packages/FakeItEasy.1.7.4507.61/lib/NET35/FakeItEasy.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>FakeItEasy</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:FakeItEasy.A\">\r\n            <summary>\r\n            Provides methods for generating fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <param name=\"options\">A lambda where options for the built fake object cna be specified.</param>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Dummy``1\">\r\n            <summary>\r\n            Gets a dummy object of the specified type. The value of a dummy object\r\n            should be irrelevant. Dummy objects should not be configured.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to return.</typeparam>\r\n            <returns>A dummy object of the specified type.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">Dummies of the specified type can not be created.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Linq.Expressions.Expression{System.Action})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fake\">\r\n            The fake to configure.\r\n            </param>\r\n            <returns>\r\n            A configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo``1(System.Linq.Expressions.Expression{System.Func{``0}})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of member on the faked object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.A`1\">\r\n            <summary>\r\n            Provides an api entry point for constraining arguments of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to validate.</typeparam>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.That\">\r\n            <summary>\r\n            Gets an argument constraint object that will be used to constrain a method call argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1._\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid. (This is a shortcut for the \"Ignored\"-property.)\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.Ignored\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Any\">\r\n            <summary>\r\n            Provides configuration for any (not a specific) call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentCollection\">\r\n            <summary>\r\n              A collection of method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.ArgumentCollection.arguments\">\r\n            <summary>\r\n              The arguments this collection contains.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"argumentNames\">The argument names.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"method\">The method.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through the collection or arguments.\r\n            </summary>\r\n            <returns>\r\n              A <see cref = \"T:System.Collections.Generic.IEnumerator`1\" /> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"index\">The index of the argument.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.String)\">\r\n            <summary>\r\n              Gets the argument with the specified name.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"argumentName\">The name of the argument.</param>\r\n            <returns>The argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Empty\">\r\n            <summary>\r\n              Gets an empty ArgumentList.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Count\">\r\n            <summary>\r\n              Gets the number of arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.ArgumentNames\">\r\n            <summary>\r\n              Gets the names of the arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Item(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <param name = \"argumentIndex\">The index of the argument to get.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentConstraintExtensions\">\r\n            <summary>\r\n            Provides validation extension to the Argumentscope{T} class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNull``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Constrains an argument so that it must be null (Nothing in VB).\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string argument to contain the specified text.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The string the argument string should contain.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains``1(FakeItEasy.IArgumentConstraintManager{``0},System.Object)\">\r\n            <summary>\r\n            Constrains the sequence so that it must contain the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the collection should contain.</param>\r\n            <typeparam name=\"T\">The type of sequence.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.StartsWith(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string so that it must start with the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNullOrEmpty(FakeItEasy.IArgumentConstraintManager{System.String})\">\r\n            <summary>\r\n            Constrains the string so that it must be null or empty.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsGreaterThan``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Constrains argument value so that it must be greater than the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsSameSequenceAs``1(FakeItEasy.IArgumentConstraintManager{``0},System.Collections.IEnumerable)\">\r\n            <summary>\r\n            The tested argument collection should contain the same elements as the\r\n            as the specified collection.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The sequence to test against.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEmpty``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Tests that the IEnumerable contains no items.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEqualTo``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Tests that the passed in argument is equal to the specified value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value to compare to.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsInstanceOf``1(FakeItEasy.IArgumentConstraintManager{``0},System.Type)\">\r\n            <summary>\r\n            Constrains the argument to be of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument in the method signature.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"type\">The type to constrain the argument with.</param>\r\n            <returns>A dummy value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String)\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"description\">\r\n            A human readable description of the constraint.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String,System.Object[])\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"manager\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"descriptionFormat\">\r\n            A human readable description of the constraint format string.\r\n            </param>\r\n            <param name=\"args\">\r\n            Arguments for the format string.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.NullCheckedMatches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument to be not null (Nothing in VB) and to match\r\n            the specified predicate.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to constrain.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"predicate\">The predicate that constrains non null values.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the constraint\r\n            to the output.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentValueFormatter`1\">\r\n            <summary>\r\n            Provides string formatting for arguments of type T when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentValueFormatter\">\r\n            <summary>\r\n            Provides string formatting for arguments when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentValueFormatter.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetStringValue(`0)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.CommonExtensions\">\r\n            <summary>\r\n            Provides extension methods for the common uses.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FormatInvariant(System.String,System.Object[])\">\r\n            <summary>\r\n            Replaces the format item in a specified System.String with the text equivalent\r\n            of the value of a corresponding System.Object instance in a specified array using\r\n            invariant culture as <see cref=\"T:System.IFormatProvider\"/>.\r\n            </summary>\r\n            <param name=\"format\">A composite format string.</param>\r\n            <param name=\"arguments\">An <see cref=\"T:System.Object\"/> array containing zero or more objects to format.</param>\r\n            <returns>The formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1})\">\r\n            <summary>\r\n            Gets an enumerable of tuples where the first value of each tuple is a value\r\n            from the first collection and the second value of each tuple is the value at the same postion\r\n            from the second collection.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">The type of values in the first collection.</typeparam>\r\n            <typeparam name=\"TSecond\">The type of values in the second collection.</typeparam>\r\n            <param name=\"firstCollection\">The first of the collections to combine.</param>\r\n            <param name=\"secondCollection\">The second of the collections to combine.</param>\r\n            <returns>An enumerable of tuples.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.ToCollectionString``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String},System.String)\">\r\n            <summary>\r\n            Joins the collection to a string.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the collection.</typeparam>\r\n            <param name=\"items\">The items to join.</param>\r\n            <param name=\"separator\">Separator to insert between each item.</param>\r\n            <param name=\"stringConverter\">A function that converts from an item to a string value.</param>\r\n            <returns>A string representation of the collection.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FirstFromEachKey``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Gets a dictionary containing the first element from the sequence that has a key specified by the key selector.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the sequence.</typeparam>\r\n            <typeparam name=\"TKey\">The type of the key.</typeparam>\r\n            <param name=\"sequence\">The sequence.</param>\r\n            <param name=\"keySelector\">The key selector.</param>\r\n            <returns>A dictionary.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.BuildableCallRule\">\r\n            <summary>\r\n            Provides the base for rules that can be built using the FakeConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRuleWithDescription\">\r\n            <summary>\r\n            Represents a call rule that has a description of the calls the\r\n            rule is applicable to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRule\">\r\n            <summary>\r\n            Allows for intercepting call to a fake object and\r\n            act upon them.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRuleWithDescription.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets if this rule is applicable to the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to validate.</param>\r\n            <returns>True if the rule applies to the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write the description to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Applicator\">\r\n            <summary>\r\n            An action that is called by the Apply method to apply this\r\n            rule to a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Actions\">\r\n            <summary>\r\n            A collection of actions that should be invoked when the configured\r\n            call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.OutAndRefParametersValues\">\r\n            <summary>\r\n            Values to apply to output and reference variables.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.CallBaseMethod\">\r\n            <summary>\r\n            Gets or sets wether the base mehtod of the fake object call should be\r\n            called when the fake object call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            The number of times the configured rule should be used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.DescriptionOfValidCall\">\r\n            <summary>\r\n            Gets a description of calls the rule is applicable to.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified\">\r\n            <summary>\r\n            Configuration for any call to a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IWhereConfiguration`1\">\r\n            <summary>\r\n            Provides a way to configure predicates for when a call should be applied.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object that is going to be configured..</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IWhereConfiguration`1.Where(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <param name=\"predicate\">A predicate for a fake object call.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the predicate\r\n            to the output.</param>\r\n            <returns>The configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidArgumentValidationConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value and\r\n            allows the use to specify validations for arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IExceptionThrowerConfiguration\">\r\n            <summary>\r\n            Configuration that lets the developer specify that an exception should be\r\n            thrown by a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IHideObjectMembers\">\r\n            <summary>\r\n            Hides standard Object members to make fluent interfaces\r\n            easier to read. Found in the source of Autofac: http://code.google.com/p/autofac/\r\n            Based on blog post by @kzu here:\r\n            http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.ToString\">\r\n            <summary>\r\n            Hides the ToString-method.\r\n            </summary>\r\n            <returns>A string representation of the implementing object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"o\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            <c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetType\">\r\n            <summary>\r\n            Gets the type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IExceptionThrowerConfiguration.Throws(System.Exception)\">\r\n            <summary>\r\n            Throws the specified exception when the currently configured\r\n            call gets called.\r\n            </summary>\r\n            <param name=\"exception\">The exception to throw.</param>\r\n            <returns>Configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallbackConfiguration`1\">\r\n            <summary>\r\n            Configuration for callbacks of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallbackConfiguration`1.Invokes(System.Action{FakeItEasy.Core.IFakeObjectCall})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"action\">The action to invoke.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallBaseConfiguration\">\r\n            <summary>\r\n            Configuration that lets you specify that a fake object call should call it's base method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallBaseConfiguration.CallsBaseMethod\">\r\n            <summary>\r\n            When the configured method or methods are called the call\r\n            will be delegated to the base method of the faked method.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">The fake object is of an abstract type or an interface\r\n            and no base method exists.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            Lets the developer configure output values of out and ref parameters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IOutAndRefParametersConfiguration.AssignsOutAndRefParameters(System.Object[])\">\r\n            <summary>\r\n            Specifies output values for out and ref parameters. Specify the values in the order\r\n            the ref and out parameters has in the configured call, any non out and ref parameters are ignored.\r\n            </summary>\r\n            <param name=\"values\">The values.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAssertConfiguration\">\r\n            <summary>\r\n            Allows the developer to assert on a call that's configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAssertConfiguration.MustHaveHappened(FakeItEasy.Repeated)\">\r\n            <summary>\r\n            Asserts that the configured call has happened the number of times\r\n            constrained by the repeatConstraint parameter.\r\n            </summary>\r\n            <param name=\"repeatConstraint\">A constraint for how many times the call\r\n            must have happened.</param>\r\n            <exception cref=\"T:FakeItEasy.ExpectationException\">The call has not been called a number of times\r\n            that passes the repeat constraint.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IVoidConfiguration.DoesNothing\">\r\n            <summary>\r\n            Configures the specified call to do nothing when called.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Provides configurations to validate arguments of a fake object call.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IArgumentValidationConfiguration`1.WhenArgumentsMatch(System.Func{FakeItEasy.ArgumentCollection,System.Boolean})\">\r\n            <summary>\r\n            Configures the call to be accepted when the specified predicate returns true.\r\n            </summary>\r\n            <param name=\"argumentsPredicate\">The argument predicate.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified.WithReturnType``1\">\r\n            <summary>\r\n            Matches calls that has the return type specified in the generic type parameter.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The return type of the members to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.Module\">\r\n            <summary>\r\n            Manages registration of a set of components in a DictionaryContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.Module.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the components of this module.\r\n            </summary>\r\n            <param name=\"container\">The container to register components in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingCallRuleFactory\">\r\n            <summary>\r\n            A factory that creates instances of the RecordingCallRuleType.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRecordingCallRuleFactory.Create``1(FakeItEasy.Core.FakeManager,FakeItEasy.Configuration.RecordedCallRule)\">\r\n            <summary>\r\n            Creates the specified fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakeObject\">The fake object the rule belongs to.</param>\r\n            <param name=\"recordedRule\">The rule that's being recorded.</param>\r\n            <returns>A RecordingCallRule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfigurationFactory\">\r\n            <summary>\r\n            A factory responsible for creating start configuration for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfigurationFactory.CreateConfiguration``1(FakeItEasy.Core.FakeManager)\">\r\n            <summary>\r\n            Creates a start configuration for the specified fake object that fakes the\r\n            specified type.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.FakeConfigurationException\">\r\n            <summary>\r\n            An exception that can be thrown when something goes wrong with the configuration\r\n            of a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IFakeConfigurationManager\">\r\n            <summary>\r\n            Handles the configuration of fake object given an expression specifying\r\n            a call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedConfiguration\">\r\n            <summary>\r\n            Lets you set up expectations and configure repeat for the configured call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRepeatConfiguration\">\r\n            <summary>\r\n            Provides configuration for method calls that has a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRepeatConfiguration.NumberOfTimes(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times for the configured event.\r\n            </summary>\r\n            <param name=\"numberOfTimesToRepeat\">The number of times to repeat.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedWithOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            A combination of the IAfterCallSpecifiedConfiguration and IOutAndRefParametersConfiguration\r\n            interfaces.\r\n            </summary>\r\n        </member>\r\n        <!-- Badly formed XML comment ignored for member \"T:FakeItEasy.Configuration.IAnyCallConfigurationWithReturnTypeSpecified`1\" -->\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value and allows the use to\r\n            specify validations for arguments.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IReturnValueConfiguration`1.ReturnsLazily(System.Func{FakeItEasy.Core.IFakeObjectCall,`0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfiguration\">\r\n            <summary>\r\n            Configurations for when a configured call is recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfigurationWithArgumentValidation\">\r\n            <summary>\r\n            Provides configuration from VisualBasic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfiguration`1\">\r\n            <summary>\r\n            Provides methods for configuring a fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.AnyCall\">\r\n            <summary>\r\n            Configures the behavior of the fake object whan a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordedCallRule\">\r\n            <summary>\r\n            A call rule that has been recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordingCallRule`1\">\r\n            <summary>\r\n            A call rule that \"sits and waits\" for the next call, when\r\n            that call occurs the recorded rule is added for that call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a set of calls and a call matcher for these calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a call matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallMatcherAccessor.Matcher\">\r\n            <summary>\r\n            Gets a call predicate that can be used to check if a fake object call matches\r\n            the specified constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor.Calls\">\r\n            <summary>\r\n            A set of calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RuleBuilder.Factory\">\r\n            <summary>\r\n            Represents a delegate that creates a configuration object from\r\n            a fake object and the rule to build.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object the rule is for.</param>\r\n            <param name=\"ruleBeingBuilt\">The rule that's being built.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcher\">\r\n            <summary>\r\n            Represents a predicate that matches a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ICallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a value indicating whether the call matches the predicate.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to match.</param>\r\n            <returns>True if the call matches the predicate.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configure\">\r\n            <summary>\r\n            Provides configuration of faked objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configure.Fake``1(``0)\">\r\n            <summary>\r\n            Gets a configuration for the specified faked object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified object is not a faked object.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject parameter was null.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue\">\r\n            <summary>\r\n            Access all types in all assemblies in the same directory as the FakeItEasy dll.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ITypeCatalogue\">\r\n            <summary>\r\n            Provides a set of types that are available.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ITypeCatalogue.GetAvailableTypes\">\r\n            <summary>\r\n            Gets a collection of available types.\r\n            </summary>\r\n            <returns>The available types.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue.GetAvailableTypes\">\r\n            <summary>\r\n            Gets a collection of available types.\r\n            </summary>\r\n            <returns>The available types.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ArgumentInfo\">\r\n            <summary>\r\n            Represents an argument and a dummy value to use for that argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ArgumentInfo.#ctor(System.Boolean,System.Type,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ArgumentInfo\"/> class.\r\n            </summary>\r\n            <param name=\"wasSuccessfullyResolved\">A value indicating if the dummy value was successfully resolved.</param>\r\n            <param name=\"typeOfArgument\">The type of argument.</param>\r\n            <param name=\"resolvedValue\">The resolved value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.WasSuccessfullyResolved\">\r\n            <summary>\r\n            Gets a value indicating if a dummy argument value was successfully\r\n            resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.TypeOfArgument\">\r\n            <summary>\r\n            Gets the type of the argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.ResolvedValue\">\r\n            <summary>\r\n            Gets the resolved value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallInterceptedEventArgs\">\r\n            <summary>\r\n            Represents an event that happens when a call has been intercepted by a proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallInterceptedEventArgs.#ctor(FakeItEasy.Core.IWritableFakeObjectCall)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.CallInterceptedEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"call\">The call.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallInterceptedEventArgs.Call\">\r\n            <summary>\r\n            Gets the call that was intercepted.\r\n            </summary>\r\n            <value>The call.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallRuleMetadata\">\r\n            <summary>\r\n            Keeps track of metadata for interceptions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallRuleMetadata.HasNotBeenCalledSpecifiedNumberOfTimes\">\r\n            <summary>\r\n            Gets whether the rule has been called the number of times specified or not.\r\n            </summary>\r\n            <returns>True if the rule has not been called the number of times specified.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.CalledNumberOfTimes\">\r\n            <summary>\r\n            Gets or sets the number of times the rule has been used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.Rule\">\r\n            <summary>\r\n            Gets or sets the rule this metadata object is tracking.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentConstraintManager`1\">\r\n            <summary>\r\n            Manages attaching of argument constraints.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentConstraintManager`1.Matches(System.Func{`0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate that should constrain the argument.</param>\r\n            <param name=\"descriptionWriter\">An action that will be write a description of the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentConstraintManager`1.Not\">\r\n            <summary>\r\n            Inverts the logic of the matches method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IArgumentConstraint\">\r\n            <summary>\r\n            Validates an argument, checks that it's valid in a specific fake call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.WriteDescription(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of the arguemnt constraint to the specified writer.\r\n            </summary>\r\n            <param name=\"writer\">\r\n            The writer.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.IsValid(System.Object)\">\r\n            <summary>\r\n            Gets whether the argument is valid.\r\n            </summary>\r\n            <param name=\"argument\">The argument to validate.</param>\r\n            <returns>True if the argument is valid.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeManagerAccessor\">\r\n            <summary>\r\n            Default implementation of the fake manager attacher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeManagerAccessor\">\r\n            <summary>\r\n            Attaches a fake manager to the proxy so that intercepted\r\n            calls can be configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ITaggable\">\r\n            <summary>\r\n            Represents an object that can be tagged with another object. When implemented\r\n            by a proxy returned from an <see cref=\"T:FakeItEasy.Creation.IProxyGenerator\"/> FakeItEasy uses the tag\r\n            to store a reference to the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> that handles that proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ITaggable.Tag\">\r\n            <summary>\r\n            Gets or sets the tag for the taggable object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeObjectCallFormatter\">\r\n            <summary>\r\n            The default implementation of the IFakeObjectCallFormatter interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallFormatter\">\r\n            <summary>\r\n            Provides string formatting for fake object calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeWrapperConfigurer\">\r\n            <summary>\r\n            Handles configuring of fake objects to delegate all their calls to a wrapped instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeWrapperConfigurer\">\r\n            <summary>\r\n            Manages configuration of fake objects to wrap instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\">\r\n            <summary>\r\n            A fake object container where delegates can be registered that are used to\r\n            resolve fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectContainer\">\r\n            <summary>\r\n            A container that can create fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectConfigurator\">\r\n            <summary>\r\n            Handles global configuration of fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectConfigurator.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a dummy object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The dummy object that was created if the method returns true.</param>\r\n            <returns>True if a dummy object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\"/> class. \r\n            Creates a new instance of the DelegateFakeObjectContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake.</param>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.Register``1(System.Func{``0})\">\r\n            <summary>\r\n            Registers the specified fake delegate.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"fakeDelegate\">The fake delegate.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DynamicContainer\">\r\n            <summary>\r\n            A IFakeObjectContainer implementation that uses mef to load IFakeDefinitions and\r\n            IFakeConfigurations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.IDummyDefinition},System.Collections.Generic.IEnumerable{FakeItEasy.IFakeConfigurator})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DynamicContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of fake object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeCreationException\">\r\n            <summary>\r\n            An exception that is thrown when there was an error creating a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager\">\r\n            <summary>\r\n            The central point in the API for proxied fake objects handles interception\r\n            of fake object calls by using a set of rules. User defined rules can be inserted\r\n            by using the AddRule-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleFirst(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule to the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleLast(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule last in the list of user rules, meaning it has the lowest priority possible.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.RemoveRule(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Removes the specified rule for the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to remove.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddInterceptionListener(FakeItEasy.Core.IInterceptionListener)\">\r\n            <summary>\r\n            Adds an interception listener to the manager.\r\n            </summary>\r\n            <param name=\"listener\">The listener to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.ClearUserRules\">\r\n            <summary>\r\n            Removes any specified user rules.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Object\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.FakeObjectType\">\r\n            <summary>\r\n            Gets the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Rules\">\r\n            <summary>\r\n            Gets the interceptions that are currently registered with the fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.RecordedCallsInScope\">\r\n            <summary>\r\n            Gets a collection of all the calls made to the fake object within the current scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager.Factory\">\r\n            <summary>\r\n            A delegate responsible for creating FakeObject instances.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptedFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object at interception time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IWritableFakeObjectCall\">\r\n            <summary>\r\n            Represents a fake object call that can be edited.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"value\">The return value to set.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method of the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the value of the argument at the specified index in the parameters list.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value of.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptedFakeObjectCall.DoNotRecordCall\">\r\n            <summary>\r\n            Sets that the call should not be recorded by the fake manager.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeScope\">\r\n            <summary>\r\n            Represents a scope for fake objects, calls configured within a scope\r\n            are only valid within that scope. Only calls made wihtin a scope\r\n            are accessible from within a scope so for example asserts will only\r\n            assert on those calls done within the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeScope\">\r\n            <summary>\r\n            Provides access to all calls made to fake objects within a scope.\r\n            Scopes calls so that only calls made within the scope are visible.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope, using the specified\r\n            container as the container for the new scope.\r\n            </summary>\r\n            <param name=\"container\">The container to usee for the new scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Dispose\">\r\n            <summary>\r\n            Closes the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddInterceptedCall(FakeItEasy.Core.FakeManager,FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Adds an intercepted call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"call\">The call that is intercepted.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddRuleFirst(FakeItEasy.Core.FakeManager,FakeItEasy.Core.CallRuleMetadata)\">\r\n            <summary>\r\n            Adds a fake object call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICompletedFakeObjectCall\">\r\n            <summary>\r\n            Represents a completed call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICompletedFakeObjectCall.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IEventRaiserArguments\">\r\n            <summary>\r\n            Used by the event raising rule of fake objects to get the event arguments used in\r\n            a call to Raise.With.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.Sender\">\r\n            <summary>\r\n            The sender of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.EventArguments\">\r\n            <summary>\r\n            The event arguments of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptionListener\">\r\n            <summary>\r\n            Represents a listener for fake object calls, can be plugged into a\r\n            FakeManager instance to listen to all intercepted calls.\r\n            </summary>\r\n            <remarks>The OnBeforeCallIntercepted method will be invoked before the OnBeforeCallIntercepted method of any\r\n            previously added listener. The OnAfterCallIntercepted method will be invoked after the OnAfterCallIntercepted\r\n            method of any previously added listener.</remarks>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnBeforeCallIntercepted(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Called when the interception begins but before any call rules\r\n            has been applied.\r\n            </summary>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnAfterCallIntercepted(FakeItEasy.Core.ICompletedFakeObjectCall,FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Called when the interception has been completed and rules has been\r\n            applied.\r\n            </summary>\r\n            <param name=\"ruleThatWasApplied\">The rule that was applied to the call.</param>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.MethodInfoManager\">\r\n            <summary>\r\n            Handles comparisons of MethodInfos.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.MethodInfoManager.WillInvokeSameMethodOnTarget(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n            Gets a value indicating if the two method infos would invoke the same method\r\n            if invoked on an instance of the target type.\r\n            </summary>\r\n            <param name=\"target\">The type of target for invokation.</param>\r\n            <param name=\"first\">The first MethodInfo.</param>\r\n            <param name=\"second\">The second MethodInfo.</param>\r\n            <returns>True if the same method would be invoked.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.NullFakeObjectContainer\">\r\n            <summary>\r\n            A null implementation for the IFakeObjectContainer interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Always returns false and sets the fakeObject to null.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">Output variable for the fake object that will always be set to null.</param>\r\n            <returns>Always return false.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.Core.IFakeObjectCall},FakeItEasy.Core.CallWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.OrderedFakeAsserter\"/> class.\r\n            </summary>\r\n            <param name=\"calls\">The calls.</param>\r\n            <param name=\"callWriter\">The call writer.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.AssertWasCalled(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.String,System.Func{System.Int32,System.Boolean},System.String)\">\r\n            <summary>\r\n            Asserts the was called.\r\n            </summary>\r\n            <param name=\"callPredicate\">The call predicate.</param>\r\n            <param name=\"callDescription\">The call description.</param>\r\n            <param name=\"repeatPredicate\">The repeat predicate.</param>\r\n            <param name=\"repeatDescription\">The repeat description.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.TypeCatalogueInstanceProvider\">\r\n            <summary>\r\n            Providesinstances from type catalogues.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.TypeCatalogueInstanceProvider.InstantiateAllOfType``1\">\r\n            <summary>\r\n            Gets an instance per type in the catalogue that is a descendant\r\n            of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of instances to get.</typeparam>\r\n            <returns>A sequence of instances of the specified type.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.WrappedObjectRule\">\r\n            <summary>\r\n            A call rule that applies to any call and just delegates the\r\n            call to the wrapped object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.WrappedObjectRule\"/> class. \r\n            Creates a new instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">\r\n            The object to wrap.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.WrappedObjectRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IProxyGenerator\">\r\n            <summary>\r\n            An interface to be implemented by classes that can generate proxies for FakeItEasy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.GenerateProxy(System.Type,System.Collections.Generic.IEnumerable{System.Type},System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Generates a proxy of the specifed type and returns a result object containing information\r\n            about the success of the generation and the proxy if it was generated.\r\n            </summary>\r\n            <param name=\"typeOfProxy\">The type of proxy to generate.</param>\r\n            <param name=\"additionalInterfacesToImplement\">Interfaces to be implemented by the proxy.</param>\r\n            <param name=\"argumentsForConstructor\">Arguments to pass to the constructor of the type in <paramref name=\"typeOfProxy\" />.</param>\r\n            <returns>A result containging the generated proxy.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.MethodCanBeInterceptedOnInstance(System.Reflection.MethodInfo,System.Object,System.String@)\">\r\n            <summary>\r\n            Gets a value indicating if the specified member can be intercepted by the proxy generator.\r\n            </summary>\r\n            <param name=\"method\">The member to test.</param>\r\n            <param name=\"callTarget\">The instance the method will be called on.</param>\r\n            <param name=\"failReason\">The reason the method can not be intercepted.</param>\r\n            <returns>True if the member can be intercepted.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ICallInterceptedEventRaiser\">\r\n            <summary>\r\n            An object that raises an event every time a call to a proxy has been intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:FakeItEasy.Creation.ICallInterceptedEventRaiser.CallWasIntercepted\">\r\n            <summary>\r\n            Raised when a call is intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\">\r\n            <summary>\r\n            An adapter that adapts an <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> to a <see cref=\"T:FakeItEasy.Core.IFakeObjectCall\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.#ctor(Castle.DynamicProxy.IInvocation)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"invocation\">The invocation.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method, should not be used with interface types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the specified value to the argument at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value to.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ToString\">\r\n            <summary>\r\n            Returns a description of the call.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Description\">\r\n            <summary>\r\n            A human readable description of the call.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorDoesNotMatchAnyConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matches the passed arguments for constructor..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorOnInterfaceTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor specified for interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsSealedTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy &quot;{0}&quot; is sealed..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsValueTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy must be an interface or a class but it was {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyTypeWithNoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No default constructor was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeAndDummyManager\">\r\n            <summary>\r\n            The default implementation of the IFakeAndDummyManager interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeAndDummyManager\">\r\n            <summary>\r\n            Handles the creation of fake and dummy objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateDummy(System.Type)\">\r\n            <summary>\r\n            Creates a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type and\r\n            the current IFakeObjectContainer does not contain the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateFake(System.Type,FakeItEasy.Creation.FakeOptions)\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake object to generate.</param>\r\n            <param name=\"options\">Options for building the fake object.</param>\r\n            <returns>A fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateDummy(System.Type,System.Object@)\">\r\n            <summary>\r\n            Tries to create a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <param name=\"result\">Outputs the result dummy when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateFake(System.Type,FakeItEasy.Creation.FakeOptions,System.Object@)\">\r\n            <summary>\r\n            Tries to create a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake to create.</param>\r\n            <param name=\"options\">Options for the creation of the fake.</param>\r\n            <param name=\"result\">The created fake object when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\">\r\n            <summary>\r\n            Default implementation ofthe IFakeCreator-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeCreatorFacade\">\r\n            <summary>\r\n            A facade used by the public api for testability.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.#ctor(FakeItEasy.Creation.IFakeAndDummyManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\"/> class.\r\n            </summary>\r\n            <param name=\"fakeAndDummyManager\">The fake and dummy manager.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>\r\n            A collection of fake objects of the specified type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1\">\r\n            <summary>\r\n            Provides options for fake wrappers.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilder`1\">\r\n            <summary>\r\n            Provides options for generating fake object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class.\r\n            </summary>\r\n            <param name=\"argumentsForConstructor\">The arguments to pass to the consturctor of the faked class.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Linq.Expressions.Expression{System.Func{`0}})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class by giving an expression with the call to\r\n            the desired constructor using the arguments to be passed to the constructor.\r\n            </summary>\r\n            <param name=\"constructorCall\">The constructor call to use when creating a class proxy.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Wrapping(`0)\">\r\n            <summary>\r\n            Specifies that the fake should delegate calls to the specified instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">The object to delegate calls to.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Implements(System.Type)\">\r\n            <summary>\r\n            Sets up the fake to implement the specified interface in addition to the\r\n            originally faked class.\r\n            </summary>\r\n            <param name=\"interfaceType\">The type of interface to implement.</param>\r\n            <returns>Options object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified type is not an interface.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified type is null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.OnFakeCreated(System.Action{`0})\">\r\n            <summary>\r\n            Specifies an action that should be run over the fake object\r\n            once it's created.\r\n            </summary>\r\n            <param name=\"action\">An action to perform.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1.RecordedBy(FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Specifies a fake recorder to use.\r\n            </summary>\r\n            <param name=\"recorder\">The recorder to use.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DummyValueCreationSession.#ctor(FakeItEasy.Core.IFakeObjectContainer,FakeItEasy.Creation.IFakeObjectCreator)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DummyValueCreationSession\"/> class.\r\n            </summary>\r\n            <param name=\"container\">The container.</param>\r\n            <param name=\"fakeObjectCreator\">The fake object creator.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ProxyGeneratorResult\">\r\n            <summary>\r\n            Contains the result of a call to TryCreateProxy of IProxyGenerator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a failed proxy\r\n            generation attempt.\r\n            </summary>\r\n            <param name=\"reasonForFailure\">\r\n            The reason the proxy generation failed.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a successful proxy\r\n            generation.\r\n            </summary>\r\n            <param name=\"generatedProxy\">\r\n            The proxy that was generated.\r\n            </param>\r\n            <param name=\"callInterceptedEventRaiser\">\r\n            An event raiser that raises\r\n            events when calls are intercepted to the proxy.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ProxyWasSuccessfullyGenerated\">\r\n            <summary>\r\n            Gets a value indicating if the proxy was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.GeneratedProxy\">\r\n            <summary>\r\n            Gets the generated proxy when it was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.CallInterceptedEventRaiser\">\r\n            <summary>\r\n            Gets the event raiser that raises events when calls to the proxy are\r\n            intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ReasonForFailure\">\r\n            <summary>\r\n            Gets the reason for failure when the generation was not successful.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IOutputWriter\">\r\n            <summary>\r\n            Represents a text writer that writes to the output.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Write(System.String)\">\r\n            <summary>\r\n            Writes the specified value to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chaining.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.WriteArgumentValue(System.Object)\">\r\n            <summary>\r\n            Formats the specified argument value as a string and writes\r\n            it to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chainging.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Indent\">\r\n            <summary>\r\n            Indents the writer.\r\n            </summary>\r\n            <returns>A disposable that will unindent the writer when disposed.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.DummyDefinition`1\">\r\n            <summary>\r\n            Represents a definition of how a fake object of the type T should\r\n            be created.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IDummyDefinition\">\r\n            <summary>\r\n            Represents a definition of how dummies of the specified type should be created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IDummyDefinition.CreateDummy\">\r\n            <summary>\r\n            Creates the fake.\r\n            </summary>\r\n            <returns>The fake object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IDummyDefinition.ForType\">\r\n            <summary>\r\n            The type of fake object the definition is for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.FakeItEasy#IDummyDefinition#CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.DummyDefinition`1.ForType\">\r\n            <summary>\r\n            Gets the type the definition is for.\r\n            </summary>\r\n            <value>For type.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExceptionMessages\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ApplicatorNotSetExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The Apply method of the ExpressionInterceptor may no be called before the Applicator property has been set..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentNameDoesNotExist\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified argument name does not exist in the ArgumentList..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentsForConstructorOnInterfaceType\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor was specified when generating proxy of interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentValidationDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to An argument validation was not configured correctly..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooFewTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too few times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooManyTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too many times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CanNotGenerateFakeMessage\">\r\n             <summary>\r\n               Looks up a localized string similar to Can not create fake of the type &apos;{0}&apos;, it&apos;s not registered in the current container and the current IProxyGenerator can not generate the fake.\r\n            \r\n            The following constructors failed:\r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ConfiguringNonFakeObjectExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Error when accessing FakeObject, the specified argument is of the type &apos;{0}&apos; which is not faked..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CreatingExpressionCallMatcherWithNonMethodOrPropertyExpression\">\r\n            <summary>\r\n              Looks up a localized string similar to An ExpressionCallMatcher can only be created for expressions that represents a method call or a property getter..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateFakeWithArgumentsForConstructorPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to The current proxy generator failed to create a proxy with the specified arguments for the constructor:\r\n            \r\n              Reason for failure:\r\n                - {0}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateProxyPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to FakeItEasy failed to create fake object of type &quot;{0}&quot;.\r\n            \r\n            1. The type is not registered in the current IFakeObjectContainer.\r\n            2. The current IProxyGenerator failed to generate a proxy for the following reason:\r\n            \r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakeCreationExceptionDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Unable to create fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakingNonAbstractClassWithArgumentsForConstructor\">\r\n            <summary>\r\n              Looks up a localized string similar to Only abstract classes can be faked using the A.Fake-method that takes an enumerable of objects as arguments for constructor, use the overload that takes an expression instead..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberAccessorNotCorrectExpressionType\">\r\n            <summary>\r\n              Looks up a localized string similar to The member accessor expression must be a lambda expression with a MethodCallExpression or MemberAccessExpression as its body..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberCanNotBeIntercepted\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified method can not be configured since it can not be intercepted by the current IProxyGenerator..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MethodMissmatchWhenPlayingBackRecording\">\r\n            <summary>\r\n              Looks up a localized string similar to The method of the call did not match the method of the recorded call, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoConstructorMatchingArguments\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matching the specified arguments was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Can not generate fake object for the class since no default constructor was found, specify a constructor call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoMoreRecordedCalls\">\r\n            <summary>\r\n              Looks up a localized string similar to All the recorded calls has been applied, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NonConstructorExpressionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Only expression of the type ExpressionType.New (constructor calls) are accepted..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NowCalledDirectly\">\r\n            <summary>\r\n              Looks up a localized string similar to The Now-method on the event raise is not meant to be called directly, only use it to register to an event on a fake object that you want to be raised..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NumberOfOutAndRefParametersDoesNotMatchCall\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of values for out and ref parameters specified does not match the number of out and ref parameters in the call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.OrderedAssertionsAlreadyOpen\">\r\n            <summary>\r\n              Looks up a localized string similar to A scope for ordered assertions is already opened, close that scope before opening another one..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.SpecifiedCallIsNotToFakedObject\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified call is not made on a fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.TypeCanNotBeProxied\">\r\n            <summary>\r\n              Looks up a localized string similar to The current fake proxy generator can not create proxies of the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.UnableToCreateDummyPattern\">\r\n            <summary>\r\n              Looks up a localized string similar to FakeItEasy was unable to create dummy of type &quot;{0}&quot;, register it in the current IFakeObjectContainer to enable this..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WasCalledWrongNumberOfTimes\">\r\n            <summary>\r\n              Looks up a localized string similar to Expected to find call {0} the number of times specified by the predicate &apos;{1}&apos; but found it {2} times among the calls:.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WrongNumberOfArgumentNamesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of argument names does not match the number of arguments..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExpectationException\">\r\n            <summary>\r\n            An exception thrown when an expection is not met (when asserting on fake object calls).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ICallExpressionParser\">\r\n            <summary>\r\n            Represents a class that can parse a lambda expression\r\n            that represents a method or property call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ICallExpressionParser.Parse(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Parses the specified expression.\r\n            </summary>\r\n            <param name=\"callExpression\">The expression to parse.</param>\r\n            <returns>The parsed expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\">\r\n            <summary>\r\n            Handles the matching of fake object calls to expressions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.#ctor(System.Linq.Expressions.LambdaExpression,FakeItEasy.Expressions.ExpressionArgumentConstraintFactory,FakeItEasy.Core.MethodInfoManager,FakeItEasy.Expressions.ICallExpressionParser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\"/> class.\r\n            </summary>\r\n            <param name=\"callSpecification\">The call specification.</param>\r\n            <param name=\"constraintFactory\">The constraint factory.</param>\r\n            <param name=\"callExpressionParser\">A parser to use to parse call expressions.</param>\r\n            <param name=\"methodInfoManager\">The method infor manager to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Matcheses the specified call against the expression.\r\n            </summary>\r\n            <param name=\"call\">The call to match.</param>\r\n            <returns>True if the call is matched by the expression.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.ToString\">\r\n            <summary>\r\n            Gets a description of the call.\r\n            </summary>\r\n            <returns>Description of the call.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Expressions.ExpressionCallMatcher.DescriptionOfMatchingCall\">\r\n            <summary>\r\n            Gets a human readable description of calls that will be matched by this\r\n            matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule\">\r\n            <summary>\r\n            An implementation of the <see cref=\"T:FakeItEasy.Core.IFakeObjectCallRule\"/> interface that uses\r\n            expressions for evaluating if the rule is applicable to a specific call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.#ctor(FakeItEasy.Expressions.ExpressionCallMatcher)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallRule\"/> class.\r\n            </summary>\r\n            <param name=\"expressionMatcher\">The expression matcher to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule.Factory\">\r\n            <summary>\r\n            Handles the instantiation of ExpressionCallRule instance.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call.</param>\r\n            <returns>A rule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.IExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.IExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>The FakeManager instance that manages the faked object the call is made on.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>A FakeObject.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax\">\r\n            <summary>\r\n            Provides extension methods for configuring and asserting on faked objects\r\n            without going through the static methods of the Fake-class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``2(``0,System.Linq.Expressions.Expression{System.Func{``0,``1}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``1(``0,System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.AnyCall``1(``0)\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Syntax\">\r\n            <summary>\r\n            Provides an extension method for configuring fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Syntax.Configure``1(``0)\">\r\n            <summary>\r\n            Gets an object that provides a fluent interface syntax for configuring\r\n            the fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakedObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject was null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake\">\r\n            <summary>\r\n            Provides static methods for accessing fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake object that manages the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to get the manager object for.</param>\r\n            <returns>The fake object manager.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <param name=\"container\">The container to use within the specified scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetCalls(System.Object)\">\r\n            <summary>\r\n            Gets all the calls made to the specified fake object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A collection containing the calls to the object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ClearConfiguration(System.Object)\">\r\n            <summary>\r\n            Cleares the configuration of the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to clear the configuration of.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.InitializeFixture(System.Object)\">\r\n            <summary>\r\n            Sets a new fake to each property or field that is tagged with the FakeAttribute in the specified\r\n            fixture.\r\n            </summary>\r\n            <param name=\"fixture\">The object to initialize.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake`1\">\r\n            <summary>\r\n            Represents a fake object that provides an api for configuring a faked object, exposed by the\r\n            FakedObject-property.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the faked object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{`0}})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object using the specified options.\r\n            </summary>\r\n            <param name=\"options\">\r\n            Options used to create the fake object.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of value the member returns.</typeparam>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.AnyCall\">\r\n            <summary>\r\n            Configures any call to the fake object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.FakedObject\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.RecordedCalls\">\r\n            <summary>\r\n            Gets all calls made to the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized through the\r\n            Fake.Initialize-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeConfigurator`1\">\r\n            <summary>\r\n            Provides the base implementation for the IFakeConfigurator-interface.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes the configurator can configure.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFakeConfigurator\">\r\n            <summary>\r\n            Provides configurations for fake objects of a specific type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFakeConfigurator.ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IFakeConfigurator.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.ConfigureFake(`0)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.FakeItEasy#IFakeConfigurator#ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.AssertThatFakeIsOfCorrectType(System.Object)\">\r\n            <summary>\r\n            Asserts the type of the that fake is of correct.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.FakeConfigurator`1.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeExtensions\">\r\n            <summary>\r\n            Provides extension methods for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Once(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(1) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 1 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Twice(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(2) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 2 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WithAnyArguments``1(FakeItEasy.Configuration.IArgumentValidationConfiguration{``0})\">\r\n            <summary>\r\n            Specifies that a call to the configured call should be applied no matter what arguments\r\n            are used in the call to the faked object.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration.</param>\r\n            <returns>A configuration object</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Matching``1(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall},System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Filters to contain only the calls that matches the call specification.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake the call is made on.</typeparam>\r\n            <param name=\"calls\">The calls to filter.</param>\r\n            <param name=\"callSpecification\">The call to match on.</param>\r\n            <returns>A collection of the calls that matches the call specification.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified call must have happened once or more.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustNotHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified has not happened.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsNextFromSequence``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0[])\">\r\n            <summary>\r\n            Configures the call to return the next value from the specified sequence each time it's called. Null will\r\n            be returned when all the values in the sequence has been returned.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The type of return value.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The call configuration to extend.\r\n            </param>\r\n            <param name=\"values\">\r\n            The values to return in sequence.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Returns``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0)\">\r\n            <summary>\r\n            Specifies the value to return when the configured call is made.\r\n            </summary>\r\n            <param name=\"value\">The value to return.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``2(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``3(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``4(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``5(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``4,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Write``1(System.Collections.Generic.IEnumerable{``0},FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes the calls in the collection to the specified text writer.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n            <param name=\"writer\">The writer to write the calls to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WriteToConsole``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Writes all calls in the collection to the console.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.Int32)\">\r\n            <summary>\r\n            Gets the argument at the specified index in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentIndex\">The index of the argument.</param>\r\n            <returns>The value of the argument with the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.String)\">\r\n            <summary>\r\n            Gets the argument with the specified name in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentName\">The name of the argument.</param>\r\n            <returns>The value of the argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Strict``1(FakeItEasy.Creation.IFakeOptionsBuilder{``0})\">\r\n            <summary>\r\n            Makes the fake strict, this means that any call to the fake\r\n            that has not been explicitly configured will throw an exception.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object.</typeparam>\r\n            <param name=\"options\">The configuration.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Where``1(FakeItEasy.Configuration.IWhereConfiguration{``0},System.Linq.Expressions.Expression{System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean}})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The return type of the where method.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The configuration object to extend.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            A predicate for a fake object call.\r\n            </param>\r\n            to the output.\r\n            <returns>\r\n            The configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``1(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action)\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made. This overload can also be used to fake calls with arguments when they don't need to be accessed.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action\"/> to invoke</param>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``2(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`1\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``3(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`2\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``4(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`3\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``5(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3,``4})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`4\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Guard\">\r\n            <summary>\r\n            Provides methods for guarding method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNull(System.Object,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is null.\r\n            </summary>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified argument was null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.IsInRange``1(``0,``0,``0,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is not in the given range.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"lowerBound\">The lower bound.</param>\r\n            <param name=\"upperBound\">The upper bound.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">The specified argument was not in the given range.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Throws an ArgumentNullException if the specified string is null or empty.\r\n            </summary>\r\n            <param name=\"value\">The value to guard.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Helpers.GetValueProducedByExpression(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Gets the value produced by the specified expression when compiled and invoked.\r\n            </summary>\r\n            <param name=\"expression\">The expression to get the value from.</param>\r\n            <returns>The value produced by the expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFileSystem\">\r\n            <summary>\r\n            Provides access to the file system.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Open(System.String,System.IO.FileMode)\">\r\n            <summary>\r\n            Opens the specified file in the specified mode.\r\n            </summary>\r\n            <param name=\"fileName\">The full path and name of the file to open.</param>\r\n            <param name=\"mode\">The mode to open the file in.</param>\r\n            <returns>A stream for reading and writing the file.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.FileExists(System.String)\">\r\n            <summary>\r\n            Gets a value indicating if the specified file exists.\r\n            </summary>\r\n            <param name=\"fileName\">The path and name of the file to check.</param>\r\n            <returns>True if the file exists.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Create(System.String)\">\r\n            <summary>\r\n            Creates a file with the specified name.\r\n            </summary>\r\n            <param name=\"fileName\">The name of the file to create.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.DictionaryContainer\">\r\n            <summary>\r\n            A simple implementation of an IoC container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.IoC.DictionaryContainer.registeredServices\">\r\n            <summary>\r\n            The dictionary that stores the registered services.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.IoC.DictionaryContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Resolve(System.Type)\">\r\n            <summary>\r\n            Resolves an instance of the specified component type.\r\n            </summary>\r\n            <param name=\"componentType\">Type of the component.</param>\r\n            <returns>An instance of the component type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Register``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.RegisterSingleton``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver as a singleton.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IRepeatSpecification\">\r\n            <summary>\r\n            Provides properties and methods to specify repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IRepeatSpecification.Times(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times as repeat.\r\n            </summary>\r\n            <param name=\"numberOfTimes\">The number of times expected.</param>\r\n            <returns>A Repeated instance.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Once\">\r\n            <summary>\r\n            Specifies once as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Twice\">\r\n            <summary>\r\n            Specifies twice as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Logger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n            Writes the specified message to the logger.\r\n            </summary>\r\n            <param name=\"message\">The message to write.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.NextCall\">\r\n            <summary>\r\n            Lets you specify options for the next call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.NextCall.To``1(``0)\">\r\n            <summary>\r\n            Specifies options for the next call to the specified fake object. The next call will\r\n            be recorded as a call configuration.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the faked object.</typeparam>\r\n            <param name=\"fake\">The faked object to configure.</param>\r\n            <returns>A call configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OrderedAssertion\">\r\n            <summary>\r\n            Provides functionality for making ordered assertions on fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OrderedAssertion.OrderedAssertions(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall})\">\r\n            <summary>\r\n            Creates a scope that changes the behavior on asserts so that all asserts within\r\n            the scope must be to calls in the specified collection of calls. Calls must have happened\r\n            in the order that the asserts are specified or the asserts will fail.\r\n            </summary>\r\n            <param name=\"calls\">The calls to assert among.</param>\r\n            <returns>A disposable used to close the scope.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OutputWriter\">\r\n            <summary>\r\n            Provides static methods for the IOutputWriter-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.WriteLine(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a new line to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.String,System.Object[])\">\r\n            <summary>\r\n            Writes the format string to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"format\">The format string to write.</param>\r\n            <param name=\"args\">Replacements for the format string.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.Object)\">\r\n            <summary>\r\n            Writes the specified object to the writer (using the ToString-method of the object).\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"value\">The value to write to the writer.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise\">\r\n            <summary>\r\n            Allows the developer to raise an event on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(System.Object,``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>A Raise(TEventArgs)-object that exposes the eventhandler to attatch.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event arguments.</typeparam>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.WithEmpty\">\r\n            <summary>\r\n            Raises an event with empty event arguments on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise`1\">\r\n            <summary>\r\n            A class exposing an event handler to attatch to an event of a faked object\r\n            in order to raise that event.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise`1.Now(System.Object,`0)\">\r\n            <summary>\r\n            Register this event handler to an event on a faked object in order to raise that event.\r\n            </summary>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">Event args for the event.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Raise`1.Go\">\r\n            <summary>\r\n            Gets a generic event handler to attatch to the event to raise.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Recorders\">\r\n            <summary>\r\n            Provides methods for creating recorders for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Recorders.FileRecorder(System.String)\">\r\n            <summary>\r\n            Gets a recorder that records to and loads calls from the specified file.\r\n            </summary>\r\n            <param name=\"fileName\">The file to use for recording.</param>\r\n            <returns>A recorder instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Repeated\">\r\n            <summary>\r\n            Provides syntax for specifying the number of times a call must have been repeated when asserting on \r\n            fake object calls.\r\n            </summary>\r\n            <example>A.CallTo(() => foo.Bar()).Assert(Happened.Once.Exactly);</example>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Like(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})\">\r\n            <summary>\r\n            Specifies that a call must have been repeated a number of times\r\n            that is validated by the specified repeatValidation argument.\r\n            </summary>\r\n            <param name=\"repeatValidation\">A predicate that specifies the number of times\r\n            a call must have been made.</param>\r\n            <returns>A Repeated-instance.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Matches(System.Int32)\">\r\n            <summary>\r\n            When implemented gets a value indicating if the repeat is matched\r\n            by the Happened-instance.\r\n            </summary>\r\n            <param name=\"repeat\">The repeat of a call.</param>\r\n            <returns>True if the repeat is a match.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Never\">\r\n            <summary>\r\n            Asserts that a call has not happened at all.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Exactly\">\r\n            <summary>\r\n            The call must have happened exactly the number of times that is specified in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.AtLeast\">\r\n            <summary>\r\n            The call must have happened any number of times greater than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.NoMoreThan\">\r\n            <summary>\r\n            The call must have happened any number of times less than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.RootModule\">\r\n            <summary>\r\n            Handles the registration of root dependencies in an IoC-container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.RootModule.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the dependencies.\r\n            </summary>\r\n            <param name=\"container\">The container to register the dependencies in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.CallData\">\r\n            <summary>\r\n            DTO for recorded calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.CallData.#ctor(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{System.Object},System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.CallData\"/> class.\r\n            </summary>\r\n            <param name=\"method\">The method.</param>\r\n            <param name=\"outputArguments\">The output arguments.</param>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.Method\">\r\n            <summary>\r\n            Gets the method that was called.\r\n            </summary>\r\n            <value>The method.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.OutputArguments\">\r\n            <summary>\r\n            Gets the output arguments of the call.\r\n            </summary>\r\n            <value>The output arguments.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.ReturnValue\">\r\n            <summary>\r\n            Gets the return value of the call.\r\n            </summary>\r\n            <value>The return value.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ICallStorage\">\r\n            <summary>\r\n            Represents storage for recorded calls for self initializing\r\n            fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>The recorded calls for the recording with the specified id.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.#ctor(System.String,FakeItEasy.IFileSystem)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.FileStorage\"/> class.\r\n            </summary>\r\n            <param name=\"fileName\">Name of the file.</param>\r\n            <param name=\"fileSystem\">The file system.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>\r\n            The recorded calls for the recording with the specified id.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.FileStorage.Factory\">\r\n            <summary>\r\n            A factory responsible for creating instances of FileStorage.\r\n            </summary>\r\n            <param name=\"fileName\">The file name of the storage.</param>\r\n            <returns>A FileStorage instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder\">\r\n            <summary>\r\n            An interface for recorders that provides stored responses for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\">\r\n            <summary>\r\n            An exception that can be thrown when recording for self initialized\r\n            fakes fails or when playback fails.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\">\r\n            <summary>\r\n            Manages the applying of recorded calls and recording of new calls when\r\n            using self initialized fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.#ctor(FakeItEasy.SelfInitializedFakes.ICallStorage)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\"/> class.\r\n            </summary>\r\n            <param name=\"storage\">The storage.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.Dispose\">\r\n            <summary>\r\n            Saves all recorded calls to the storage.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.RecordingManager.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager.Factory\">\r\n            <summary>\r\n            Represents a factory responsible for creating recording manager\r\n            instances.\r\n            </summary>\r\n            <param name=\"storage\">The storage the manager should use.</param>\r\n            <returns>A RecordingManager instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\">\r\n            <summary>\r\n            A call rule use for self initializing fakes, delegates call to\r\n            be applied by the recorder.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.#ctor(FakeItEasy.Core.IFakeObjectCallRule,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\"/> class.\r\n            </summary>\r\n            <param name=\"wrappedRule\">The wrapped rule.</param>\r\n            <param name=\"recorder\">The recorder.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SmellyAttribute\">\r\n            <summary>\r\n            An attribute that can be applied to code that should be fixed becuase theres a\r\n            code smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SmellyAttribute.Description\">\r\n            <summary>\r\n            A description of the smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.UnderTestAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized as a SUT through the Fake.Initialize-mehtod.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/FakeItEasy.1.7.4507.61/lib/NET40/FakeItEasy.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>FakeItEasy</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:FakeItEasy.A\">\r\n            <summary>\r\n            Provides methods for generating fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <param name=\"options\">A lambda where options for the built fake object cna be specified.</param>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Dummy``1\">\r\n            <summary>\r\n            Gets a dummy object of the specified type. The value of a dummy object\r\n            should be irrelevant. Dummy objects should not be configured.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to return.</typeparam>\r\n            <returns>A dummy object of the specified type.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">Dummies of the specified type can not be created.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Linq.Expressions.Expression{System.Action})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fake\">\r\n            The fake to configure.\r\n            </param>\r\n            <returns>\r\n            A configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo``1(System.Linq.Expressions.Expression{System.Func{``0}})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of member on the faked object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.A`1\">\r\n            <summary>\r\n            Provides an api entry point for constraining arguments of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to validate.</typeparam>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.That\">\r\n            <summary>\r\n            Gets an argument constraint object that will be used to constrain a method call argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1._\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid. (This is a shortcut for the \"Ignored\"-property.)\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.Ignored\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Any\">\r\n            <summary>\r\n            Provides configuration for any (not a specific) call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentValueFormatter`1\">\r\n            <summary>\r\n            Provides string formatting for arguments of type T when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentValueFormatter\">\r\n            <summary>\r\n            Provides string formatting for arguments when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentValueFormatter.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetStringValue(`0)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.BuildableCallRule\">\r\n            <summary>\r\n            Provides the base for rules that can be built using the FakeConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRuleWithDescription\">\r\n            <summary>\r\n            Represents a call rule that has a description of the calls the\r\n            rule is applicable to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRule\">\r\n            <summary>\r\n            Allows for intercepting call to a fake object and\r\n            act upon them.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRuleWithDescription.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets if this rule is applicable to the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to validate.</param>\r\n            <returns>True if the rule applies to the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write the description to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Applicator\">\r\n            <summary>\r\n            An action that is called by the Apply method to apply this\r\n            rule to a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Actions\">\r\n            <summary>\r\n            A collection of actions that should be invoked when the configured\r\n            call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.OutAndRefParametersValues\">\r\n            <summary>\r\n            Values to apply to output and reference variables.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.CallBaseMethod\">\r\n            <summary>\r\n            Gets or sets wether the base mehtod of the fake object call should be\r\n            called when the fake object call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            The number of times the configured rule should be used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.DescriptionOfValidCall\">\r\n            <summary>\r\n            Gets a description of calls the rule is applicable to.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <!-- Badly formed XML comment ignored for member \"T:FakeItEasy.Configuration.IAnyCallConfigurationWithReturnTypeSpecified`1\" -->\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value and allows the use to\r\n            specify validations for arguments.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IExceptionThrowerConfiguration\">\r\n            <summary>\r\n            Configuration that lets the developer specify that an exception should be\r\n            thrown by a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IHideObjectMembers\">\r\n            <summary>\r\n            Hides standard Object members to make fluent interfaces\r\n            easier to read. Found in the source of Autofac: http://code.google.com/p/autofac/\r\n            Based on blog post by @kzu here:\r\n            http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.ToString\">\r\n            <summary>\r\n            Hides the ToString-method.\r\n            </summary>\r\n            <returns>A string representation of the implementing object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"o\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            <c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetType\">\r\n            <summary>\r\n            Gets the type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IExceptionThrowerConfiguration.Throws(System.Exception)\">\r\n            <summary>\r\n            Throws the specified exception when the currently configured\r\n            call gets called.\r\n            </summary>\r\n            <param name=\"exception\">The exception to throw.</param>\r\n            <returns>Configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallbackConfiguration`1\">\r\n            <summary>\r\n            Configuration for callbacks of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallbackConfiguration`1.Invokes(System.Action{FakeItEasy.Core.IFakeObjectCall})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"action\">The action to invoke.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAssertConfiguration\">\r\n            <summary>\r\n            Allows the developer to assert on a call that's configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAssertConfiguration.MustHaveHappened(FakeItEasy.Repeated)\">\r\n            <summary>\r\n            Asserts that the configured call has happened the number of times\r\n            constrained by the repeatConstraint parameter.\r\n            </summary>\r\n            <param name=\"repeatConstraint\">A constraint for how many times the call\r\n            must have happened.</param>\r\n            <exception cref=\"T:FakeItEasy.ExpectationException\">The call has not been called a number of times\r\n            that passes the repeat constraint.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallBaseConfiguration\">\r\n            <summary>\r\n            Configuration that lets you specify that a fake object call should call it's base method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallBaseConfiguration.CallsBaseMethod\">\r\n            <summary>\r\n            When the configured method or methods are called the call\r\n            will be delegated to the base method of the faked method.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">The fake object is of an abstract type or an interface\r\n            and no base method exists.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IReturnValueConfiguration`1.ReturnsLazily(System.Func{FakeItEasy.Core.IFakeObjectCall,`0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Provides configurations to validate arguments of a fake object call.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IArgumentValidationConfiguration`1.WhenArgumentsMatch(System.Func{FakeItEasy.ArgumentCollection,System.Boolean})\">\r\n            <summary>\r\n            Configures the call to be accepted when the specified predicate returns true.\r\n            </summary>\r\n            <param name=\"argumentsPredicate\">The argument predicate.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IWhereConfiguration`1\">\r\n            <summary>\r\n            Provides a way to configure predicates for when a call should be applied.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object that is going to be configured..</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IWhereConfiguration`1.Where(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <param name=\"predicate\">A predicate for a fake object call.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the predicate\r\n            to the output.</param>\r\n            <returns>The configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue\">\r\n            <summary>\r\n            Access all types in all assemblies in the same directory as the FakeItEasy dll.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ITypeCatalogue\">\r\n            <summary>\r\n            Provides a set of types that are available.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ITypeCatalogue.GetAvailableTypes\">\r\n            <summary>\r\n            Gets a collection of available types.\r\n            </summary>\r\n            <returns>The available types.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ApplicationDirectoryAssembliesTypeCatalogue.GetAvailableTypes\">\r\n            <summary>\r\n            Gets a collection of available types.\r\n            </summary>\r\n            <returns>The available types.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified\">\r\n            <summary>\r\n            Configuration for any call to a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidArgumentValidationConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value and\r\n            allows the use to specify validations for arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            Lets the developer configure output values of out and ref parameters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IOutAndRefParametersConfiguration.AssignsOutAndRefParameters(System.Object[])\">\r\n            <summary>\r\n            Specifies output values for out and ref parameters. Specify the values in the order\r\n            the ref and out parameters has in the configured call, any non out and ref parameters are ignored.\r\n            </summary>\r\n            <param name=\"values\">The values.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IVoidConfiguration.DoesNothing\">\r\n            <summary>\r\n            Configures the specified call to do nothing when called.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified.WithReturnType``1\">\r\n            <summary>\r\n            Matches calls that has the return type specified in the generic type parameter.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The return type of the members to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.Module\">\r\n            <summary>\r\n            Manages registration of a set of components in a DictionaryContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.Module.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the components of this module.\r\n            </summary>\r\n            <param name=\"container\">The container to register components in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingCallRuleFactory\">\r\n            <summary>\r\n            A factory that creates instances of the RecordingCallRuleType.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRecordingCallRuleFactory.Create``1(FakeItEasy.Core.FakeManager,FakeItEasy.Configuration.RecordedCallRule)\">\r\n            <summary>\r\n            Creates the specified fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakeObject\">The fake object the rule belongs to.</param>\r\n            <param name=\"recordedRule\">The rule that's being recorded.</param>\r\n            <returns>A RecordingCallRule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfigurationFactory\">\r\n            <summary>\r\n            A factory responsible for creating start configuration for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfigurationFactory.CreateConfiguration``1(FakeItEasy.Core.FakeManager)\">\r\n            <summary>\r\n            Creates a start configuration for the specified fake object that fakes the\r\n            specified type.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.FakeConfigurationException\">\r\n            <summary>\r\n            An exception that can be thrown when something goes wrong with the configuration\r\n            of a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IFakeConfigurationManager\">\r\n            <summary>\r\n            Handles the configuration of fake object given an expression specifying\r\n            a call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedConfiguration\">\r\n            <summary>\r\n            Lets you set up expectations and configure repeat for the configured call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRepeatConfiguration\">\r\n            <summary>\r\n            Provides configuration for method calls that has a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRepeatConfiguration.NumberOfTimes(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times for the configured event.\r\n            </summary>\r\n            <param name=\"numberOfTimesToRepeat\">The number of times to repeat.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedWithOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            A combination of the IAfterCallSpecifiedConfiguration and IOutAndRefParametersConfiguration\r\n            interfaces.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfiguration\">\r\n            <summary>\r\n            Configurations for when a configured call is recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfigurationWithArgumentValidation\">\r\n            <summary>\r\n            Provides configuration from VisualBasic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfiguration`1\">\r\n            <summary>\r\n            Provides methods for configuring a fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.AnyCall\">\r\n            <summary>\r\n            Configures the behavior of the fake object whan a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordedCallRule\">\r\n            <summary>\r\n            A call rule that has been recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordingCallRule`1\">\r\n            <summary>\r\n            A call rule that \"sits and waits\" for the next call, when\r\n            that call occurs the recorded rule is added for that call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a set of calls and a call matcher for these calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a call matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallMatcherAccessor.Matcher\">\r\n            <summary>\r\n            Gets a call predicate that can be used to check if a fake object call matches\r\n            the specified constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor.Calls\">\r\n            <summary>\r\n            A set of calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RuleBuilder.Factory\">\r\n            <summary>\r\n            Represents a delegate that creates a configuration object from\r\n            a fake object and the rule to build.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object the rule is for.</param>\r\n            <param name=\"ruleBeingBuilt\">The rule that's being built.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcher\">\r\n            <summary>\r\n            Represents a predicate that matches a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ICallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a value indicating whether the call matches the predicate.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to match.</param>\r\n            <returns>True if the call matches the predicate.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ArgumentInfo\">\r\n            <summary>\r\n            Represents an argument and a dummy value to use for that argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ArgumentInfo.#ctor(System.Boolean,System.Type,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ArgumentInfo\"/> class.\r\n            </summary>\r\n            <param name=\"wasSuccessfullyResolved\">A value indicating if the dummy value was successfully resolved.</param>\r\n            <param name=\"typeOfArgument\">The type of argument.</param>\r\n            <param name=\"resolvedValue\">The resolved value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.WasSuccessfullyResolved\">\r\n            <summary>\r\n            Gets a value indicating if a dummy argument value was successfully\r\n            resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.TypeOfArgument\">\r\n            <summary>\r\n            Gets the type of the argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.ResolvedValue\">\r\n            <summary>\r\n            Gets the resolved value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallInterceptedEventArgs\">\r\n            <summary>\r\n            Represents an event that happens when a call has been intercepted by a proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallInterceptedEventArgs.#ctor(FakeItEasy.Core.IWritableFakeObjectCall)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.CallInterceptedEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"call\">The call.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallInterceptedEventArgs.Call\">\r\n            <summary>\r\n            Gets the call that was intercepted.\r\n            </summary>\r\n            <value>The call.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallRuleMetadata\">\r\n            <summary>\r\n            Keeps track of metadata for interceptions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallRuleMetadata.HasNotBeenCalledSpecifiedNumberOfTimes\">\r\n            <summary>\r\n            Gets whether the rule has been called the number of times specified or not.\r\n            </summary>\r\n            <returns>True if the rule has not been called the number of times specified.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.CalledNumberOfTimes\">\r\n            <summary>\r\n            Gets or sets the number of times the rule has been used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.Rule\">\r\n            <summary>\r\n            Gets or sets the rule this metadata object is tracking.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentConstraintManager`1\">\r\n            <summary>\r\n            Manages attaching of argument constraints.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentConstraintManager`1.Matches(System.Func{`0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate that should constrain the argument.</param>\r\n            <param name=\"descriptionWriter\">An action that will be write a description of the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentConstraintManager`1.Not\">\r\n            <summary>\r\n            Inverts the logic of the matches method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IArgumentConstraint\">\r\n            <summary>\r\n            Validates an argument, checks that it's valid in a specific fake call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.WriteDescription(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of the arguemnt constraint to the specified writer.\r\n            </summary>\r\n            <param name=\"writer\">\r\n            The writer.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.IsValid(System.Object)\">\r\n            <summary>\r\n            Gets whether the argument is valid.\r\n            </summary>\r\n            <param name=\"argument\">The argument to validate.</param>\r\n            <returns>True if the argument is valid.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeManagerAccessor\">\r\n            <summary>\r\n            Default implementation of the fake manager attacher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeManagerAccessor\">\r\n            <summary>\r\n            Attaches a fake manager to the proxy so that intercepted\r\n            calls can be configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ITaggable\">\r\n            <summary>\r\n            Represents an object that can be tagged with another object. When implemented\r\n            by a proxy returned from an <see cref=\"T:FakeItEasy.Creation.IProxyGenerator\"/> FakeItEasy uses the tag\r\n            to store a reference to the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> that handles that proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ITaggable.Tag\">\r\n            <summary>\r\n            Gets or sets the tag for the taggable object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeObjectCallFormatter\">\r\n            <summary>\r\n            The default implementation of the IFakeObjectCallFormatter interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallFormatter\">\r\n            <summary>\r\n            Provides string formatting for fake object calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeWrapperConfigurer\">\r\n            <summary>\r\n            Handles configuring of fake objects to delegate all their calls to a wrapped instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeWrapperConfigurer\">\r\n            <summary>\r\n            Manages configuration of fake objects to wrap instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\">\r\n            <summary>\r\n            A fake object container where delegates can be registered that are used to\r\n            resolve fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectContainer\">\r\n            <summary>\r\n            A container that can create fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectConfigurator\">\r\n            <summary>\r\n            Handles global configuration of fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectConfigurator.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a dummy object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The dummy object that was created if the method returns true.</param>\r\n            <returns>True if a dummy object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\"/> class. \r\n            Creates a new instance of the DelegateFakeObjectContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake.</param>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.Register``1(System.Func{``0})\">\r\n            <summary>\r\n            Registers the specified fake delegate.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"fakeDelegate\">The fake delegate.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DynamicContainer\">\r\n            <summary>\r\n            A IFakeObjectContainer implementation that uses mef to load IFakeDefinitions and\r\n            IFakeConfigurations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.IDummyDefinition},System.Collections.Generic.IEnumerable{FakeItEasy.IFakeConfigurator})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DynamicContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of fake object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeCreationException\">\r\n            <summary>\r\n            An exception that is thrown when there was an error creating a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager\">\r\n            <summary>\r\n            The central point in the API for proxied fake objects handles interception\r\n            of fake object calls by using a set of rules. User defined rules can be inserted\r\n            by using the AddRule-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleFirst(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule to the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleLast(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule last in the list of user rules, meaning it has the lowest priority possible.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.RemoveRule(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Removes the specified rule for the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to remove.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddInterceptionListener(FakeItEasy.Core.IInterceptionListener)\">\r\n            <summary>\r\n            Adds an interception listener to the manager.\r\n            </summary>\r\n            <param name=\"listener\">The listener to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.ClearUserRules\">\r\n            <summary>\r\n            Removes any specified user rules.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Object\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.FakeObjectType\">\r\n            <summary>\r\n            Gets the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Rules\">\r\n            <summary>\r\n            Gets the interceptions that are currently registered with the fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.RecordedCallsInScope\">\r\n            <summary>\r\n            Gets a collection of all the calls made to the fake object within the current scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager.Factory\">\r\n            <summary>\r\n            A delegate responsible for creating FakeObject instances.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptedFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object at interception time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IWritableFakeObjectCall\">\r\n            <summary>\r\n            Represents a fake object call that can be edited.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"value\">The return value to set.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method of the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the value of the argument at the specified index in the parameters list.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value of.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptedFakeObjectCall.DoNotRecordCall\">\r\n            <summary>\r\n            Sets that the call should not be recorded by the fake manager.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeScope\">\r\n            <summary>\r\n            Represents a scope for fake objects, calls configured within a scope\r\n            are only valid within that scope. Only calls made wihtin a scope\r\n            are accessible from within a scope so for example asserts will only\r\n            assert on those calls done within the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeScope\">\r\n            <summary>\r\n            Provides access to all calls made to fake objects within a scope.\r\n            Scopes calls so that only calls made within the scope are visible.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope, using the specified\r\n            container as the container for the new scope.\r\n            </summary>\r\n            <param name=\"container\">The container to usee for the new scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Dispose\">\r\n            <summary>\r\n            Closes the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddInterceptedCall(FakeItEasy.Core.FakeManager,FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Adds an intercepted call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"call\">The call that is intercepted.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddRuleFirst(FakeItEasy.Core.FakeManager,FakeItEasy.Core.CallRuleMetadata)\">\r\n            <summary>\r\n            Adds a fake object call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptionListener\">\r\n            <summary>\r\n            Represents a listener for fake object calls, can be plugged into a\r\n            FakeManager instance to listen to all intercepted calls.\r\n            </summary>\r\n            <remarks>The OnBeforeCallIntercepted method will be invoked before the OnBeforeCallIntercepted method of any\r\n            previously added listener. The OnAfterCallIntercepted method will be invoked after the OnAfterCallIntercepted\r\n            method of any previously added listener.</remarks>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnBeforeCallIntercepted(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Called when the interception begins but before any call rules\r\n            has been applied.\r\n            </summary>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnAfterCallIntercepted(FakeItEasy.Core.ICompletedFakeObjectCall,FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Called when the interception has been completed and rules has been\r\n            applied.\r\n            </summary>\r\n            <param name=\"ruleThatWasApplied\">The rule that was applied to the call.</param>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IProxyGenerator\">\r\n            <summary>\r\n            An interface to be implemented by classes that can generate proxies for FakeItEasy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.GenerateProxy(System.Type,System.Collections.Generic.IEnumerable{System.Type},System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Generates a proxy of the specifed type and returns a result object containing information\r\n            about the success of the generation and the proxy if it was generated.\r\n            </summary>\r\n            <param name=\"typeOfProxy\">The type of proxy to generate.</param>\r\n            <param name=\"additionalInterfacesToImplement\">Interfaces to be implemented by the proxy.</param>\r\n            <param name=\"argumentsForConstructor\">Arguments to pass to the constructor of the type in <paramref name=\"typeOfProxy\" />.</param>\r\n            <returns>A result containging the generated proxy.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.MethodCanBeInterceptedOnInstance(System.Reflection.MethodInfo,System.Object,System.String@)\">\r\n            <summary>\r\n            Gets a value indicating if the specified member can be intercepted by the proxy generator.\r\n            </summary>\r\n            <param name=\"method\">The member to test.</param>\r\n            <param name=\"callTarget\">The instance the method will be called on.</param>\r\n            <param name=\"failReason\">The reason the method can not be intercepted.</param>\r\n            <returns>True if the member can be intercepted.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ICallInterceptedEventRaiser\">\r\n            <summary>\r\n            An object that raises an event every time a call to a proxy has been intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:FakeItEasy.Creation.ICallInterceptedEventRaiser.CallWasIntercepted\">\r\n            <summary>\r\n            Raised when a call is intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICompletedFakeObjectCall\">\r\n            <summary>\r\n            Represents a completed call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICompletedFakeObjectCall.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IOutputWriter\">\r\n            <summary>\r\n            Represents a text writer that writes to the output.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Write(System.String)\">\r\n            <summary>\r\n            Writes the specified value to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chaining.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.WriteArgumentValue(System.Object)\">\r\n            <summary>\r\n            Formats the specified argument value as a string and writes\r\n            it to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chainging.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Indent\">\r\n            <summary>\r\n            Indents the writer.\r\n            </summary>\r\n            <returns>A disposable that will unindent the writer when disposed.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IEventRaiserArguments\">\r\n            <summary>\r\n            Used by the event raising rule of fake objects to get the event arguments used in\r\n            a call to Raise.With.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.Sender\">\r\n            <summary>\r\n            The sender of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.EventArguments\">\r\n            <summary>\r\n            The event arguments of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.TypeCatalogueInstanceProvider\">\r\n            <summary>\r\n            Providesinstances from type catalogues.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.TypeCatalogueInstanceProvider.InstantiateAllOfType``1\">\r\n            <summary>\r\n            Gets an instance per type in the catalogue that is a descendant\r\n            of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of instances to get.</typeparam>\r\n            <returns>A sequence of instances of the specified type.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.MethodInfoManager\">\r\n            <summary>\r\n            Handles comparisons of MethodInfos.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.MethodInfoManager.WillInvokeSameMethodOnTarget(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n            Gets a value indicating if the two method infos would invoke the same method\r\n            if invoked on an instance of the target type.\r\n            </summary>\r\n            <param name=\"target\">The type of target for invokation.</param>\r\n            <param name=\"first\">The first MethodInfo.</param>\r\n            <param name=\"second\">The second MethodInfo.</param>\r\n            <returns>True if the same method would be invoked.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.NullFakeObjectContainer\">\r\n            <summary>\r\n            A null implementation for the IFakeObjectContainer interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Always returns false and sets the fakeObject to null.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">Output variable for the fake object that will always be set to null.</param>\r\n            <returns>Always return false.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.Core.IFakeObjectCall},FakeItEasy.Core.CallWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.OrderedFakeAsserter\"/> class.\r\n            </summary>\r\n            <param name=\"calls\">The calls.</param>\r\n            <param name=\"callWriter\">The call writer.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.AssertWasCalled(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.String,System.Func{System.Int32,System.Boolean},System.String)\">\r\n            <summary>\r\n            Asserts the was called.\r\n            </summary>\r\n            <param name=\"callPredicate\">The call predicate.</param>\r\n            <param name=\"callDescription\">The call description.</param>\r\n            <param name=\"repeatPredicate\">The repeat predicate.</param>\r\n            <param name=\"repeatDescription\">The repeat description.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.WrappedObjectRule\">\r\n            <summary>\r\n            A call rule that applies to any call and just delegates the\r\n            call to the wrapped object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.WrappedObjectRule\"/> class. \r\n            Creates a new instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">\r\n            The object to wrap.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.WrappedObjectRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\">\r\n            <summary>\r\n            An adapter that adapts an <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> to a <see cref=\"T:FakeItEasy.Core.IFakeObjectCall\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.#ctor(Castle.DynamicProxy.IInvocation)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"invocation\">The invocation.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method, should not be used with interface types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the specified value to the argument at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value to.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ToString\">\r\n            <summary>\r\n            Returns a description of the call.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Description\">\r\n            <summary>\r\n            A human readable description of the call.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorDoesNotMatchAnyConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matches the passed arguments for constructor..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorOnInterfaceTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor specified for interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsSealedTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy &quot;{0}&quot; is sealed..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsValueTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy must be an interface or a class but it was {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyTypeWithNoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No default constructor was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeAndDummyManager\">\r\n            <summary>\r\n            The default implementation of the IFakeAndDummyManager interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeAndDummyManager\">\r\n            <summary>\r\n            Handles the creation of fake and dummy objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateDummy(System.Type)\">\r\n            <summary>\r\n            Creates a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type and\r\n            the current IFakeObjectContainer does not contain the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateFake(System.Type,FakeItEasy.Creation.FakeOptions)\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake object to generate.</param>\r\n            <param name=\"options\">Options for building the fake object.</param>\r\n            <returns>A fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateDummy(System.Type,System.Object@)\">\r\n            <summary>\r\n            Tries to create a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <param name=\"result\">Outputs the result dummy when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateFake(System.Type,FakeItEasy.Creation.FakeOptions,System.Object@)\">\r\n            <summary>\r\n            Tries to create a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake to create.</param>\r\n            <param name=\"options\">Options for the creation of the fake.</param>\r\n            <param name=\"result\">The created fake object when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\">\r\n            <summary>\r\n            Default implementation ofthe IFakeCreator-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeCreatorFacade\">\r\n            <summary>\r\n            A facade used by the public api for testability.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.#ctor(FakeItEasy.Creation.IFakeAndDummyManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\"/> class.\r\n            </summary>\r\n            <param name=\"fakeAndDummyManager\">The fake and dummy manager.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>\r\n            A collection of fake objects of the specified type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1\">\r\n            <summary>\r\n            Provides options for fake wrappers.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilder`1\">\r\n            <summary>\r\n            Provides options for generating fake object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class.\r\n            </summary>\r\n            <param name=\"argumentsForConstructor\">The arguments to pass to the consturctor of the faked class.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Linq.Expressions.Expression{System.Func{`0}})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class by giving an expression with the call to\r\n            the desired constructor using the arguments to be passed to the constructor.\r\n            </summary>\r\n            <param name=\"constructorCall\">The constructor call to use when creating a class proxy.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Wrapping(`0)\">\r\n            <summary>\r\n            Specifies that the fake should delegate calls to the specified instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">The object to delegate calls to.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Implements(System.Type)\">\r\n            <summary>\r\n            Sets up the fake to implement the specified interface in addition to the\r\n            originally faked class.\r\n            </summary>\r\n            <param name=\"interfaceType\">The type of interface to implement.</param>\r\n            <returns>Options object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified type is not an interface.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified type is null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.OnFakeCreated(System.Action{`0})\">\r\n            <summary>\r\n            Specifies an action that should be run over the fake object\r\n            once it's created.\r\n            </summary>\r\n            <param name=\"action\">An action to perform.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1.RecordedBy(FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Specifies a fake recorder to use.\r\n            </summary>\r\n            <param name=\"recorder\">The recorder to use.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DummyValueCreationSession.#ctor(FakeItEasy.Core.IFakeObjectContainer,FakeItEasy.Creation.IFakeObjectCreator)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DummyValueCreationSession\"/> class.\r\n            </summary>\r\n            <param name=\"container\">The container.</param>\r\n            <param name=\"fakeObjectCreator\">The fake object creator.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ProxyGeneratorResult\">\r\n            <summary>\r\n            Contains the result of a call to TryCreateProxy of IProxyGenerator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a failed proxy\r\n            generation attempt.\r\n            </summary>\r\n            <param name=\"reasonForFailure\">\r\n            The reason the proxy generation failed.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a successful proxy\r\n            generation.\r\n            </summary>\r\n            <param name=\"generatedProxy\">\r\n            The proxy that was generated.\r\n            </param>\r\n            <param name=\"callInterceptedEventRaiser\">\r\n            An event raiser that raises\r\n            events when calls are intercepted to the proxy.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ProxyWasSuccessfullyGenerated\">\r\n            <summary>\r\n            Gets a value indicating if the proxy was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.GeneratedProxy\">\r\n            <summary>\r\n            Gets the generated proxy when it was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.CallInterceptedEventRaiser\">\r\n            <summary>\r\n            Gets the event raiser that raises events when calls to the proxy are\r\n            intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ReasonForFailure\">\r\n            <summary>\r\n            Gets the reason for failure when the generation was not successful.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ICallExpressionParser\">\r\n            <summary>\r\n            Represents a class that can parse a lambda expression\r\n            that represents a method or property call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ICallExpressionParser.Parse(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Parses the specified expression.\r\n            </summary>\r\n            <param name=\"callExpression\">The expression to parse.</param>\r\n            <returns>The parsed expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\">\r\n            <summary>\r\n            Handles the matching of fake object calls to expressions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.#ctor(System.Linq.Expressions.LambdaExpression,FakeItEasy.Expressions.ExpressionArgumentConstraintFactory,FakeItEasy.Core.MethodInfoManager,FakeItEasy.Expressions.ICallExpressionParser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\"/> class.\r\n            </summary>\r\n            <param name=\"callSpecification\">The call specification.</param>\r\n            <param name=\"constraintFactory\">The constraint factory.</param>\r\n            <param name=\"callExpressionParser\">A parser to use to parse call expressions.</param>\r\n            <param name=\"methodInfoManager\">The method infor manager to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Matcheses the specified call against the expression.\r\n            </summary>\r\n            <param name=\"call\">The call to match.</param>\r\n            <returns>True if the call is matched by the expression.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.ToString\">\r\n            <summary>\r\n            Gets a description of the call.\r\n            </summary>\r\n            <returns>Description of the call.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Expressions.ExpressionCallMatcher.DescriptionOfMatchingCall\">\r\n            <summary>\r\n            Gets a human readable description of calls that will be matched by this\r\n            matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule\">\r\n            <summary>\r\n            An implementation of the <see cref=\"T:FakeItEasy.Core.IFakeObjectCallRule\"/> interface that uses\r\n            expressions for evaluating if the rule is applicable to a specific call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.#ctor(FakeItEasy.Expressions.ExpressionCallMatcher)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallRule\"/> class.\r\n            </summary>\r\n            <param name=\"expressionMatcher\">The expression matcher to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule.Factory\">\r\n            <summary>\r\n            Handles the instantiation of ExpressionCallRule instance.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call.</param>\r\n            <returns>A rule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.IExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.IExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>The FakeManager instance that manages the faked object the call is made on.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>A FakeObject.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax\">\r\n            <summary>\r\n            Provides extension methods for configuring and asserting on faked objects\r\n            without going through the static methods of the Fake-class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``2(``0,System.Linq.Expressions.Expression{System.Func{``0,``1}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``1(``0,System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.AnyCall``1(``0)\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Syntax\">\r\n            <summary>\r\n            Provides an extension method for configuring fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Syntax.Configure``1(``0)\">\r\n            <summary>\r\n            Gets an object that provides a fluent interface syntax for configuring\r\n            the fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakedObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject was null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized through the\r\n            Fake.Initialize-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.DictionaryContainer\">\r\n            <summary>\r\n            A simple implementation of an IoC container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.IoC.DictionaryContainer.registeredServices\">\r\n            <summary>\r\n            The dictionary that stores the registered services.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.IoC.DictionaryContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Resolve(System.Type)\">\r\n            <summary>\r\n            Resolves an instance of the specified component type.\r\n            </summary>\r\n            <param name=\"componentType\">Type of the component.</param>\r\n            <returns>An instance of the component type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Register``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.RegisterSingleton``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver as a singleton.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IRepeatSpecification\">\r\n            <summary>\r\n            Provides properties and methods to specify repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IRepeatSpecification.Times(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times as repeat.\r\n            </summary>\r\n            <param name=\"numberOfTimes\">The number of times expected.</param>\r\n            <returns>A Repeated instance.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Once\">\r\n            <summary>\r\n            Specifies once as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Twice\">\r\n            <summary>\r\n            Specifies twice as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Logger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n            Writes the specified message to the logger.\r\n            </summary>\r\n            <param name=\"message\">The message to write.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OrderedAssertion\">\r\n            <summary>\r\n            Provides functionality for making ordered assertions on fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OrderedAssertion.OrderedAssertions(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall})\">\r\n            <summary>\r\n            Creates a scope that changes the behavior on asserts so that all asserts within\r\n            the scope must be to calls in the specified collection of calls. Calls must have happened\r\n            in the order that the asserts are specified or the asserts will fail.\r\n            </summary>\r\n            <param name=\"calls\">The calls to assert among.</param>\r\n            <returns>A disposable used to close the scope.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeConfigurator`1\">\r\n            <summary>\r\n            Provides the base implementation for the IFakeConfigurator-interface.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes the configurator can configure.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFakeConfigurator\">\r\n            <summary>\r\n            Provides configurations for fake objects of a specific type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFakeConfigurator.ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IFakeConfigurator.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.ConfigureFake(`0)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.FakeItEasy#IFakeConfigurator#ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.AssertThatFakeIsOfCorrectType(System.Object)\">\r\n            <summary>\r\n            Asserts the type of the that fake is of correct.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.FakeConfigurator`1.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.DummyDefinition`1\">\r\n            <summary>\r\n            Represents a definition of how a fake object of the type T should\r\n            be created.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IDummyDefinition\">\r\n            <summary>\r\n            Represents a definition of how dummies of the specified type should be created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IDummyDefinition.CreateDummy\">\r\n            <summary>\r\n            Creates the fake.\r\n            </summary>\r\n            <returns>The fake object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IDummyDefinition.ForType\">\r\n            <summary>\r\n            The type of fake object the definition is for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.FakeItEasy#IDummyDefinition#CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.DummyDefinition`1.ForType\">\r\n            <summary>\r\n            Gets the type the definition is for.\r\n            </summary>\r\n            <value>For type.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentConstraintExtensions\">\r\n            <summary>\r\n            Provides validation extension to the Argumentscope{T} class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNull``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Constrains an argument so that it must be null (Nothing in VB).\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string argument to contain the specified text.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The string the argument string should contain.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains``1(FakeItEasy.IArgumentConstraintManager{``0},System.Object)\">\r\n            <summary>\r\n            Constrains the sequence so that it must contain the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the collection should contain.</param>\r\n            <typeparam name=\"T\">The type of sequence.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.StartsWith(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string so that it must start with the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNullOrEmpty(FakeItEasy.IArgumentConstraintManager{System.String})\">\r\n            <summary>\r\n            Constrains the string so that it must be null or empty.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsGreaterThan``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Constrains argument value so that it must be greater than the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsSameSequenceAs``1(FakeItEasy.IArgumentConstraintManager{``0},System.Collections.IEnumerable)\">\r\n            <summary>\r\n            The tested argument collection should contain the same elements as the\r\n            as the specified collection.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The sequence to test against.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEmpty``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Tests that the IEnumerable contains no items.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEqualTo``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Tests that the passed in argument is equal to the specified value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value to compare to.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsInstanceOf``1(FakeItEasy.IArgumentConstraintManager{``0},System.Type)\">\r\n            <summary>\r\n            Constrains the argument to be of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument in the method signature.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"type\">The type to constrain the argument with.</param>\r\n            <returns>A dummy value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String)\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"description\">\r\n            A human readable description of the constraint.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String,System.Object[])\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"manager\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"descriptionFormat\">\r\n            A human readable description of the constraint format string.\r\n            </param>\r\n            <param name=\"args\">\r\n            Arguments for the format string.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.NullCheckedMatches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument to be not null (Nothing in VB) and to match\r\n            the specified predicate.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to constrain.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"predicate\">The predicate that constrains non null values.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the constraint\r\n            to the output.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExceptionMessages\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ApplicatorNotSetExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The Apply method of the ExpressionInterceptor may no be called before the Applicator property has been set..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentNameDoesNotExist\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified argument name does not exist in the ArgumentList..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentsForConstructorOnInterfaceType\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor was specified when generating proxy of interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentValidationDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to An argument validation was not configured correctly..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooFewTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too few times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooManyTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too many times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CanNotGenerateFakeMessage\">\r\n             <summary>\r\n               Looks up a localized string similar to Can not create fake of the type &apos;{0}&apos;, it&apos;s not registered in the current container and the current IProxyGenerator can not generate the fake.\r\n            \r\n            The following constructors failed:\r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ConfiguringNonFakeObjectExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Error when accessing FakeObject, the specified argument is of the type &apos;{0}&apos; which is not faked..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CreatingExpressionCallMatcherWithNonMethodOrPropertyExpression\">\r\n            <summary>\r\n              Looks up a localized string similar to An ExpressionCallMatcher can only be created for expressions that represents a method call or a property getter..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateFakeWithArgumentsForConstructorPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to The current proxy generator failed to create a proxy with the specified arguments for the constructor:\r\n            \r\n              Reason for failure:\r\n                - {0}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateProxyPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to FakeItEasy failed to create fake object of type &quot;{0}&quot;.\r\n            \r\n            1. The type is not registered in the current IFakeObjectContainer.\r\n            2. The current IProxyGenerator failed to generate a proxy for the following reason:\r\n            \r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakeCreationExceptionDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Unable to create fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakingNonAbstractClassWithArgumentsForConstructor\">\r\n            <summary>\r\n              Looks up a localized string similar to Only abstract classes can be faked using the A.Fake-method that takes an enumerable of objects as arguments for constructor, use the overload that takes an expression instead..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberAccessorNotCorrectExpressionType\">\r\n            <summary>\r\n              Looks up a localized string similar to The member accessor expression must be a lambda expression with a MethodCallExpression or MemberAccessExpression as its body..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberCanNotBeIntercepted\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified method can not be configured since it can not be intercepted by the current IProxyGenerator..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MethodMissmatchWhenPlayingBackRecording\">\r\n            <summary>\r\n              Looks up a localized string similar to The method of the call did not match the method of the recorded call, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoConstructorMatchingArguments\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matching the specified arguments was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Can not generate fake object for the class since no default constructor was found, specify a constructor call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoMoreRecordedCalls\">\r\n            <summary>\r\n              Looks up a localized string similar to All the recorded calls has been applied, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NonConstructorExpressionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Only expression of the type ExpressionType.New (constructor calls) are accepted..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NowCalledDirectly\">\r\n            <summary>\r\n              Looks up a localized string similar to The Now-method on the event raise is not meant to be called directly, only use it to register to an event on a fake object that you want to be raised..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NumberOfOutAndRefParametersDoesNotMatchCall\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of values for out and ref parameters specified does not match the number of out and ref parameters in the call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.OrderedAssertionsAlreadyOpen\">\r\n            <summary>\r\n              Looks up a localized string similar to A scope for ordered assertions is already opened, close that scope before opening another one..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.SpecifiedCallIsNotToFakedObject\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified call is not made on a fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.TypeCanNotBeProxied\">\r\n            <summary>\r\n              Looks up a localized string similar to The current fake proxy generator can not create proxies of the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.UnableToCreateDummyPattern\">\r\n            <summary>\r\n              Looks up a localized string similar to FakeItEasy was unable to create dummy of type &quot;{0}&quot;, register it in the current IFakeObjectContainer to enable this..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WasCalledWrongNumberOfTimes\">\r\n            <summary>\r\n              Looks up a localized string similar to Expected to find call {0} the number of times specified by the predicate &apos;{1}&apos; but found it {2} times among the calls:.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WrongNumberOfArgumentNamesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of argument names does not match the number of arguments..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OutputWriter\">\r\n            <summary>\r\n            Provides static methods for the IOutputWriter-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.WriteLine(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a new line to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.String,System.Object[])\">\r\n            <summary>\r\n            Writes the format string to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"format\">The format string to write.</param>\r\n            <param name=\"args\">Replacements for the format string.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.Object)\">\r\n            <summary>\r\n            Writes the specified object to the writer (using the ToString-method of the object).\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"value\">The value to write to the writer.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Repeated\">\r\n            <summary>\r\n            Provides syntax for specifying the number of times a call must have been repeated when asserting on \r\n            fake object calls.\r\n            </summary>\r\n            <example>A.CallTo(() => foo.Bar()).Assert(Happened.Once.Exactly);</example>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Like(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})\">\r\n            <summary>\r\n            Specifies that a call must have been repeated a number of times\r\n            that is validated by the specified repeatValidation argument.\r\n            </summary>\r\n            <param name=\"repeatValidation\">A predicate that specifies the number of times\r\n            a call must have been made.</param>\r\n            <returns>A Repeated-instance.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Matches(System.Int32)\">\r\n            <summary>\r\n            When implemented gets a value indicating if the repeat is matched\r\n            by the Happened-instance.\r\n            </summary>\r\n            <param name=\"repeat\">The repeat of a call.</param>\r\n            <returns>True if the repeat is a match.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Never\">\r\n            <summary>\r\n            Asserts that a call has not happened at all.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Exactly\">\r\n            <summary>\r\n            The call must have happened exactly the number of times that is specified in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.AtLeast\">\r\n            <summary>\r\n            The call must have happened any number of times greater than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.NoMoreThan\">\r\n            <summary>\r\n            The call must have happened any number of times less than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Recorders\">\r\n            <summary>\r\n            Provides methods for creating recorders for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Recorders.FileRecorder(System.String)\">\r\n            <summary>\r\n            Gets a recorder that records to and loads calls from the specified file.\r\n            </summary>\r\n            <param name=\"fileName\">The file to use for recording.</param>\r\n            <returns>A recorder instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFileSystem\">\r\n            <summary>\r\n            Provides access to the file system.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Open(System.String,System.IO.FileMode)\">\r\n            <summary>\r\n            Opens the specified file in the specified mode.\r\n            </summary>\r\n            <param name=\"fileName\">The full path and name of the file to open.</param>\r\n            <param name=\"mode\">The mode to open the file in.</param>\r\n            <returns>A stream for reading and writing the file.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.FileExists(System.String)\">\r\n            <summary>\r\n            Gets a value indicating if the specified file exists.\r\n            </summary>\r\n            <param name=\"fileName\">The path and name of the file to check.</param>\r\n            <returns>True if the file exists.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Create(System.String)\">\r\n            <summary>\r\n            Creates a file with the specified name.\r\n            </summary>\r\n            <param name=\"fileName\">The name of the file to create.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Helpers.GetValueProducedByExpression(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Gets the value produced by the specified expression when compiled and invoked.\r\n            </summary>\r\n            <param name=\"expression\">The expression to get the value from.</param>\r\n            <returns>The value produced by the expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExpectationException\">\r\n            <summary>\r\n            An exception thrown when an expection is not met (when asserting on fake object calls).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeExtensions\">\r\n            <summary>\r\n            Provides extension methods for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Once(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(1) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 1 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Twice(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(2) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 2 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WithAnyArguments``1(FakeItEasy.Configuration.IArgumentValidationConfiguration{``0})\">\r\n            <summary>\r\n            Specifies that a call to the configured call should be applied no matter what arguments\r\n            are used in the call to the faked object.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration.</param>\r\n            <returns>A configuration object</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Matching``1(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall},System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Filters to contain only the calls that matches the call specification.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake the call is made on.</typeparam>\r\n            <param name=\"calls\">The calls to filter.</param>\r\n            <param name=\"callSpecification\">The call to match on.</param>\r\n            <returns>A collection of the calls that matches the call specification.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified call must have happened once or more.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustNotHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified has not happened.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsNextFromSequence``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0[])\">\r\n            <summary>\r\n            Configures the call to return the next value from the specified sequence each time it's called. Null will\r\n            be returned when all the values in the sequence has been returned.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The type of return value.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The call configuration to extend.\r\n            </param>\r\n            <param name=\"values\">\r\n            The values to return in sequence.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Returns``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0)\">\r\n            <summary>\r\n            Specifies the value to return when the configured call is made.\r\n            </summary>\r\n            <param name=\"value\">The value to return.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``2(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``3(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``4(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``5(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``4,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Write``1(System.Collections.Generic.IEnumerable{``0},FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes the calls in the collection to the specified text writer.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n            <param name=\"writer\">The writer to write the calls to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WriteToConsole``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Writes all calls in the collection to the console.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.Int32)\">\r\n            <summary>\r\n            Gets the argument at the specified index in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentIndex\">The index of the argument.</param>\r\n            <returns>The value of the argument with the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.String)\">\r\n            <summary>\r\n            Gets the argument with the specified name in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentName\">The name of the argument.</param>\r\n            <returns>The value of the argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Strict``1(FakeItEasy.Creation.IFakeOptionsBuilder{``0})\">\r\n            <summary>\r\n            Makes the fake strict, this means that any call to the fake\r\n            that has not been explicitly configured will throw an exception.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object.</typeparam>\r\n            <param name=\"options\">The configuration.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Where``1(FakeItEasy.Configuration.IWhereConfiguration{``0},System.Linq.Expressions.Expression{System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean}})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The return type of the where method.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The configuration object to extend.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            A predicate for a fake object call.\r\n            </param>\r\n            to the output.\r\n            <returns>\r\n            The configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``1(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action)\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made. This overload can also be used to fake calls with arguments when they don't need to be accessed.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action\"/> to invoke</param>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``2(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`1\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``3(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`2\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``4(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`3\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``5(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3,``4})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`4\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentCollection\">\r\n            <summary>\r\n              A collection of method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.ArgumentCollection.arguments\">\r\n            <summary>\r\n              The arguments this collection contains.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"argumentNames\">The argument names.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"method\">The method.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through the collection or arguments.\r\n            </summary>\r\n            <returns>\r\n              A <see cref = \"T:System.Collections.Generic.IEnumerator`1\" /> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"index\">The index of the argument.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.String)\">\r\n            <summary>\r\n              Gets the argument with the specified name.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"argumentName\">The name of the argument.</param>\r\n            <returns>The argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Empty\">\r\n            <summary>\r\n              Gets an empty ArgumentList.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Count\">\r\n            <summary>\r\n              Gets the number of arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.ArgumentNames\">\r\n            <summary>\r\n              Gets the names of the arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Item(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <param name = \"argumentIndex\">The index of the argument to get.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Guard\">\r\n            <summary>\r\n            Provides methods for guarding method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNull(System.Object,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is null.\r\n            </summary>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified argument was null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.IsInRange``1(``0,``0,``0,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is not in the given range.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"lowerBound\">The lower bound.</param>\r\n            <param name=\"upperBound\">The upper bound.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">The specified argument was not in the given range.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Throws an ArgumentNullException if the specified string is null or empty.\r\n            </summary>\r\n            <param name=\"value\">The value to guard.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake\">\r\n            <summary>\r\n            Provides static methods for accessing fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake object that manages the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to get the manager object for.</param>\r\n            <returns>The fake object manager.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <param name=\"container\">The container to use within the specified scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetCalls(System.Object)\">\r\n            <summary>\r\n            Gets all the calls made to the specified fake object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A collection containing the calls to the object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ClearConfiguration(System.Object)\">\r\n            <summary>\r\n            Cleares the configuration of the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to clear the configuration of.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.InitializeFixture(System.Object)\">\r\n            <summary>\r\n            Sets a new fake to each property or field that is tagged with the FakeAttribute in the specified\r\n            fixture.\r\n            </summary>\r\n            <param name=\"fixture\">The object to initialize.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake`1\">\r\n            <summary>\r\n            Represents a fake object that provides an api for configuring a faked object, exposed by the\r\n            FakedObject-property.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the faked object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{`0}})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object using the specified options.\r\n            </summary>\r\n            <param name=\"options\">\r\n            Options used to create the fake object.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of value the member returns.</typeparam>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.AnyCall\">\r\n            <summary>\r\n            Configures any call to the fake object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.FakedObject\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.RecordedCalls\">\r\n            <summary>\r\n            Gets all calls made to the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise\">\r\n            <summary>\r\n            Allows the developer to raise an event on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(System.Object,``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>A Raise(TEventArgs)-object that exposes the eventhandler to attatch.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event arguments.</typeparam>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.WithEmpty\">\r\n            <summary>\r\n            Raises an event with empty event arguments on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise`1\">\r\n            <summary>\r\n            A class exposing an event handler to attatch to an event of a faked object\r\n            in order to raise that event.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise`1.Now(System.Object,`0)\">\r\n            <summary>\r\n            Register this event handler to an event on a faked object in order to raise that event.\r\n            </summary>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">Event args for the event.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Raise`1.Go\">\r\n            <summary>\r\n            Gets a generic event handler to attatch to the event to raise.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.RootModule\">\r\n            <summary>\r\n            Handles the registration of root dependencies in an IoC-container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.RootModule.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the dependencies.\r\n            </summary>\r\n            <param name=\"container\">The container to register the dependencies in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.CallData\">\r\n            <summary>\r\n            DTO for recorded calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.CallData.#ctor(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{System.Object},System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.CallData\"/> class.\r\n            </summary>\r\n            <param name=\"method\">The method.</param>\r\n            <param name=\"outputArguments\">The output arguments.</param>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.Method\">\r\n            <summary>\r\n            Gets the method that was called.\r\n            </summary>\r\n            <value>The method.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.OutputArguments\">\r\n            <summary>\r\n            Gets the output arguments of the call.\r\n            </summary>\r\n            <value>The output arguments.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.ReturnValue\">\r\n            <summary>\r\n            Gets the return value of the call.\r\n            </summary>\r\n            <value>The return value.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ICallStorage\">\r\n            <summary>\r\n            Represents storage for recorded calls for self initializing\r\n            fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>The recorded calls for the recording with the specified id.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.#ctor(System.String,FakeItEasy.IFileSystem)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.FileStorage\"/> class.\r\n            </summary>\r\n            <param name=\"fileName\">Name of the file.</param>\r\n            <param name=\"fileSystem\">The file system.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>\r\n            The recorded calls for the recording with the specified id.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.FileStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.FileStorage.Factory\">\r\n            <summary>\r\n            A factory responsible for creating instances of FileStorage.\r\n            </summary>\r\n            <param name=\"fileName\">The file name of the storage.</param>\r\n            <returns>A FileStorage instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder\">\r\n            <summary>\r\n            An interface for recorders that provides stored responses for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\">\r\n            <summary>\r\n            An exception that can be thrown when recording for self initialized\r\n            fakes fails or when playback fails.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">\r\n            The <paramref name=\"info\"/> parameter is null.\r\n            </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">\r\n            The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0).\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\">\r\n            <summary>\r\n            Manages the applying of recorded calls and recording of new calls when\r\n            using self initialized fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.#ctor(FakeItEasy.SelfInitializedFakes.ICallStorage)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\"/> class.\r\n            </summary>\r\n            <param name=\"storage\">The storage.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.Dispose\">\r\n            <summary>\r\n            Saves all recorded calls to the storage.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.RecordingManager.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager.Factory\">\r\n            <summary>\r\n            Represents a factory responsible for creating recording manager\r\n            instances.\r\n            </summary>\r\n            <param name=\"storage\">The storage the manager should use.</param>\r\n            <returns>A RecordingManager instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\">\r\n            <summary>\r\n            A call rule use for self initializing fakes, delegates call to\r\n            be applied by the recorder.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.#ctor(FakeItEasy.Core.IFakeObjectCallRule,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\"/> class.\r\n            </summary>\r\n            <param name=\"wrappedRule\">The wrapped rule.</param>\r\n            <param name=\"recorder\">The recorder.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.CommonExtensions\">\r\n            <summary>\r\n            Provides extension methods for the common uses.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FormatInvariant(System.String,System.Object[])\">\r\n            <summary>\r\n            Replaces the format item in a specified System.String with the text equivalent\r\n            of the value of a corresponding System.Object instance in a specified array using\r\n            invariant culture as <see cref=\"T:System.IFormatProvider\"/>.\r\n            </summary>\r\n            <param name=\"format\">A composite format string.</param>\r\n            <param name=\"arguments\">An <see cref=\"T:System.Object\"/> array containing zero or more objects to format.</param>\r\n            <returns>The formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1})\">\r\n            <summary>\r\n            Gets an enumerable of tuples where the first value of each tuple is a value\r\n            from the first collection and the second value of each tuple is the value at the same postion\r\n            from the second collection.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">The type of values in the first collection.</typeparam>\r\n            <typeparam name=\"TSecond\">The type of values in the second collection.</typeparam>\r\n            <param name=\"firstCollection\">The first of the collections to combine.</param>\r\n            <param name=\"secondCollection\">The second of the collections to combine.</param>\r\n            <returns>An enumerable of tuples.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.ToCollectionString``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String},System.String)\">\r\n            <summary>\r\n            Joins the collection to a string.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the collection.</typeparam>\r\n            <param name=\"items\">The items to join.</param>\r\n            <param name=\"separator\">Separator to insert between each item.</param>\r\n            <param name=\"stringConverter\">A function that converts from an item to a string value.</param>\r\n            <returns>A string representation of the collection.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FirstFromEachKey``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Gets a dictionary containing the first element from the sequence that has a key specified by the key selector.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the sequence.</typeparam>\r\n            <typeparam name=\"TKey\">The type of the key.</typeparam>\r\n            <param name=\"sequence\">The sequence.</param>\r\n            <param name=\"keySelector\">The key selector.</param>\r\n            <returns>A dictionary.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SmellyAttribute\">\r\n            <summary>\r\n            An attribute that can be applied to code that should be fixed becuase theres a\r\n            code smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SmellyAttribute.Description\">\r\n            <summary>\r\n            A description of the smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.NextCall\">\r\n            <summary>\r\n            Lets you specify options for the next call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.NextCall.To``1(``0)\">\r\n            <summary>\r\n            Specifies options for the next call to the specified fake object. The next call will\r\n            be recorded as a call configuration.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the faked object.</typeparam>\r\n            <param name=\"fake\">The faked object to configure.</param>\r\n            <returns>A call configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.UnderTestAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized as a SUT through the Fake.Initialize-mehtod.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/FakeItEasy.1.7.4507.61/lib/SL3/FakeItEasy.XML",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>FakeItEasy</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:FakeItEasy.A\">\r\n            <summary>\r\n            Provides methods for generating fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <param name=\"options\">A lambda where options for the built fake object cna be specified.</param>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Dummy``1\">\r\n            <summary>\r\n            Gets a dummy object of the specified type. The value of a dummy object\r\n            should be irrelevant. Dummy objects should not be configured.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to return.</typeparam>\r\n            <returns>A dummy object of the specified type.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">Dummies of the specified type can not be created.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Linq.Expressions.Expression{System.Action})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fake\">\r\n            The fake to configure.\r\n            </param>\r\n            <returns>\r\n            A configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo``1(System.Linq.Expressions.Expression{System.Func{``0}})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of member on the faked object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.A`1\">\r\n            <summary>\r\n            Provides an api entry point for constraining arguments of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to validate.</typeparam>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.That\">\r\n            <summary>\r\n            Gets an argument constraint object that will be used to constrain a method call argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1._\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid. (This is a shortcut for the \"Ignored\"-property.)\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.Ignored\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Any\">\r\n            <summary>\r\n            Provides configuration for any (not a specific) call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentCollection\">\r\n            <summary>\r\n              A collection of method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.ArgumentCollection.arguments\">\r\n            <summary>\r\n              The arguments this collection contains.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"argumentNames\">The argument names.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"method\">The method.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through the collection or arguments.\r\n            </summary>\r\n            <returns>\r\n              A <see cref = \"T:System.Collections.Generic.IEnumerator`1\" /> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"index\">The index of the argument.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.String)\">\r\n            <summary>\r\n              Gets the argument with the specified name.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"argumentName\">The name of the argument.</param>\r\n            <returns>The argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Empty\">\r\n            <summary>\r\n              Gets an empty ArgumentList.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Count\">\r\n            <summary>\r\n              Gets the number of arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.ArgumentNames\">\r\n            <summary>\r\n              Gets the names of the arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Item(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <param name = \"argumentIndex\">The index of the argument to get.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentConstraintExtensions\">\r\n            <summary>\r\n            Provides validation extension to the Argumentscope{T} class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNull``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Constrains an argument so that it must be null (Nothing in VB).\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string argument to contain the specified text.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The string the argument string should contain.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains``1(FakeItEasy.IArgumentConstraintManager{``0},System.Object)\">\r\n            <summary>\r\n            Constrains the sequence so that it must contain the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the collection should contain.</param>\r\n            <typeparam name=\"T\">The type of sequence.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.StartsWith(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string so that it must start with the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNullOrEmpty(FakeItEasy.IArgumentConstraintManager{System.String})\">\r\n            <summary>\r\n            Constrains the string so that it must be null or empty.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsGreaterThan``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Constrains argument value so that it must be greater than the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsSameSequenceAs``1(FakeItEasy.IArgumentConstraintManager{``0},System.Collections.IEnumerable)\">\r\n            <summary>\r\n            The tested argument collection should contain the same elements as the\r\n            as the specified collection.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The sequence to test against.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEmpty``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Tests that the IEnumerable contains no items.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEqualTo``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Tests that the passed in argument is equal to the specified value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value to compare to.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsInstanceOf``1(FakeItEasy.IArgumentConstraintManager{``0},System.Type)\">\r\n            <summary>\r\n            Constrains the argument to be of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument in the method signature.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"type\">The type to constrain the argument with.</param>\r\n            <returns>A dummy value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String)\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"description\">\r\n            A human readable description of the constraint.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String,System.Object[])\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"manager\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"descriptionFormat\">\r\n            A human readable description of the constraint format string.\r\n            </param>\r\n            <param name=\"args\">\r\n            Arguments for the format string.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.NullCheckedMatches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument to be not null (Nothing in VB) and to match\r\n            the specified predicate.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to constrain.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"predicate\">The predicate that constrains non null values.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the constraint\r\n            to the output.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentValueFormatter`1\">\r\n            <summary>\r\n            Provides string formatting for arguments of type T when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentValueFormatter\">\r\n            <summary>\r\n            Provides string formatting for arguments when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentValueFormatter.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetStringValue(`0)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.CommonExtensions\">\r\n            <summary>\r\n            Provides extension methods for the common uses.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FormatInvariant(System.String,System.Object[])\">\r\n            <summary>\r\n            Replaces the format item in a specified System.String with the text equivalent\r\n            of the value of a corresponding System.Object instance in a specified array using\r\n            invariant culture as <see cref=\"T:System.IFormatProvider\"/>.\r\n            </summary>\r\n            <param name=\"format\">A composite format string.</param>\r\n            <param name=\"arguments\">An <see cref=\"T:System.Object\"/> array containing zero or more objects to format.</param>\r\n            <returns>The formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1})\">\r\n            <summary>\r\n            Gets an enumerable of tuples where the first value of each tuple is a value\r\n            from the first collection and the second value of each tuple is the value at the same postion\r\n            from the second collection.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">The type of values in the first collection.</typeparam>\r\n            <typeparam name=\"TSecond\">The type of values in the second collection.</typeparam>\r\n            <param name=\"firstCollection\">The first of the collections to combine.</param>\r\n            <param name=\"secondCollection\">The second of the collections to combine.</param>\r\n            <returns>An enumerable of tuples.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.ToCollectionString``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String},System.String)\">\r\n            <summary>\r\n            Joins the collection to a string.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the collection.</typeparam>\r\n            <param name=\"items\">The items to join.</param>\r\n            <param name=\"separator\">Separator to insert between each item.</param>\r\n            <param name=\"stringConverter\">A function that converts from an item to a string value.</param>\r\n            <returns>A string representation of the collection.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FirstFromEachKey``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Gets a dictionary containing the first element from the sequence that has a key specified by the key selector.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the sequence.</typeparam>\r\n            <typeparam name=\"TKey\">The type of the key.</typeparam>\r\n            <param name=\"sequence\">The sequence.</param>\r\n            <param name=\"keySelector\">The key selector.</param>\r\n            <returns>A dictionary.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.BuildableCallRule\">\r\n            <summary>\r\n            Provides the base for rules that can be built using the FakeConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRuleWithDescription\">\r\n            <summary>\r\n            Represents a call rule that has a description of the calls the\r\n            rule is applicable to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRule\">\r\n            <summary>\r\n            Allows for intercepting call to a fake object and\r\n            act upon them.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRuleWithDescription.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets if this rule is applicable to the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to validate.</param>\r\n            <returns>True if the rule applies to the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write the description to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Applicator\">\r\n            <summary>\r\n            An action that is called by the Apply method to apply this\r\n            rule to a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Actions\">\r\n            <summary>\r\n            A collection of actions that should be invoked when the configured\r\n            call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.OutAndRefParametersValues\">\r\n            <summary>\r\n            Values to apply to output and reference variables.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.CallBaseMethod\">\r\n            <summary>\r\n            Gets or sets wether the base mehtod of the fake object call should be\r\n            called when the fake object call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            The number of times the configured rule should be used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.DescriptionOfValidCall\">\r\n            <summary>\r\n            Gets a description of calls the rule is applicable to.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified\">\r\n            <summary>\r\n            Configuration for any call to a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IWhereConfiguration`1\">\r\n            <summary>\r\n            Provides a way to configure predicates for when a call should be applied.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object that is going to be configured..</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IWhereConfiguration`1.Where(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <param name=\"predicate\">A predicate for a fake object call.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the predicate\r\n            to the output.</param>\r\n            <returns>The configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidArgumentValidationConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value and\r\n            allows the use to specify validations for arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IExceptionThrowerConfiguration\">\r\n            <summary>\r\n            Configuration that lets the developer specify that an exception should be\r\n            thrown by a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IHideObjectMembers\">\r\n            <summary>\r\n            Hides standard Object members to make fluent interfaces\r\n            easier to read. Found in the source of Autofac: http://code.google.com/p/autofac/\r\n            Based on blog post by @kzu here:\r\n            http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.ToString\">\r\n            <summary>\r\n            Hides the ToString-method.\r\n            </summary>\r\n            <returns>A string representation of the implementing object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"o\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            <c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetType\">\r\n            <summary>\r\n            Gets the type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IExceptionThrowerConfiguration.Throws(System.Exception)\">\r\n            <summary>\r\n            Throws the specified exception when the currently configured\r\n            call gets called.\r\n            </summary>\r\n            <param name=\"exception\">The exception to throw.</param>\r\n            <returns>Configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallbackConfiguration`1\">\r\n            <summary>\r\n            Configuration for callbacks of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallbackConfiguration`1.Invokes(System.Action{FakeItEasy.Core.IFakeObjectCall})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"action\">The action to invoke.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallBaseConfiguration\">\r\n            <summary>\r\n            Configuration that lets you specify that a fake object call should call it's base method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallBaseConfiguration.CallsBaseMethod\">\r\n            <summary>\r\n            When the configured method or methods are called the call\r\n            will be delegated to the base method of the faked method.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">The fake object is of an abstract type or an interface\r\n            and no base method exists.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            Lets the developer configure output values of out and ref parameters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IOutAndRefParametersConfiguration.AssignsOutAndRefParameters(System.Object[])\">\r\n            <summary>\r\n            Specifies output values for out and ref parameters. Specify the values in the order\r\n            the ref and out parameters has in the configured call, any non out and ref parameters are ignored.\r\n            </summary>\r\n            <param name=\"values\">The values.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAssertConfiguration\">\r\n            <summary>\r\n            Allows the developer to assert on a call that's configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAssertConfiguration.MustHaveHappened(FakeItEasy.Repeated)\">\r\n            <summary>\r\n            Asserts that the configured call has happened the number of times\r\n            constrained by the repeatConstraint parameter.\r\n            </summary>\r\n            <param name=\"repeatConstraint\">A constraint for how many times the call\r\n            must have happened.</param>\r\n            <exception cref=\"T:FakeItEasy.ExpectationException\">The call has not been called a number of times\r\n            that passes the repeat constraint.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IVoidConfiguration.DoesNothing\">\r\n            <summary>\r\n            Configures the specified call to do nothing when called.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Provides configurations to validate arguments of a fake object call.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IArgumentValidationConfiguration`1.WhenArgumentsMatch(System.Func{FakeItEasy.ArgumentCollection,System.Boolean})\">\r\n            <summary>\r\n            Configures the call to be accepted when the specified predicate returns true.\r\n            </summary>\r\n            <param name=\"argumentsPredicate\">The argument predicate.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified.WithReturnType``1\">\r\n            <summary>\r\n            Matches calls that has the return type specified in the generic type parameter.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The return type of the members to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.Module\">\r\n            <summary>\r\n            Manages registration of a set of components in a DictionaryContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.Module.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the components of this module.\r\n            </summary>\r\n            <param name=\"container\">The container to register components in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingCallRuleFactory\">\r\n            <summary>\r\n            A factory that creates instances of the RecordingCallRuleType.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRecordingCallRuleFactory.Create``1(FakeItEasy.Core.FakeManager,FakeItEasy.Configuration.RecordedCallRule)\">\r\n            <summary>\r\n            Creates the specified fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakeObject\">The fake object the rule belongs to.</param>\r\n            <param name=\"recordedRule\">The rule that's being recorded.</param>\r\n            <returns>A RecordingCallRule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfigurationFactory\">\r\n            <summary>\r\n            A factory responsible for creating start configuration for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfigurationFactory.CreateConfiguration``1(FakeItEasy.Core.FakeManager)\">\r\n            <summary>\r\n            Creates a start configuration for the specified fake object that fakes the\r\n            specified type.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.FakeConfigurationException\">\r\n            <summary>\r\n            An exception that can be thrown when something goes wrong with the configuration\r\n            of a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IFakeConfigurationManager\">\r\n            <summary>\r\n            Handles the configuration of fake object given an expression specifying\r\n            a call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedConfiguration\">\r\n            <summary>\r\n            Lets you set up expectations and configure repeat for the configured call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRepeatConfiguration\">\r\n            <summary>\r\n            Provides configuration for method calls that has a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRepeatConfiguration.NumberOfTimes(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times for the configured event.\r\n            </summary>\r\n            <param name=\"numberOfTimesToRepeat\">The number of times to repeat.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedWithOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            A combination of the IAfterCallSpecifiedConfiguration and IOutAndRefParametersConfiguration\r\n            interfaces.\r\n            </summary>\r\n        </member>\r\n        <!-- Badly formed XML comment ignored for member \"T:FakeItEasy.Configuration.IAnyCallConfigurationWithReturnTypeSpecified`1\" -->\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value and allows the use to\r\n            specify validations for arguments.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IReturnValueConfiguration`1.ReturnsLazily(System.Func{FakeItEasy.Core.IFakeObjectCall,`0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfiguration\">\r\n            <summary>\r\n            Configurations for when a configured call is recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfigurationWithArgumentValidation\">\r\n            <summary>\r\n            Provides configuration from VisualBasic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfiguration`1\">\r\n            <summary>\r\n            Provides methods for configuring a fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.AnyCall\">\r\n            <summary>\r\n            Configures the behavior of the fake object whan a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordedCallRule\">\r\n            <summary>\r\n            A call rule that has been recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordingCallRule`1\">\r\n            <summary>\r\n            A call rule that \"sits and waits\" for the next call, when\r\n            that call occurs the recorded rule is added for that call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a set of calls and a call matcher for these calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a call matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallMatcherAccessor.Matcher\">\r\n            <summary>\r\n            Gets a call predicate that can be used to check if a fake object call matches\r\n            the specified constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor.Calls\">\r\n            <summary>\r\n            A set of calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RuleBuilder.Factory\">\r\n            <summary>\r\n            Represents a delegate that creates a configuration object from\r\n            a fake object and the rule to build.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object the rule is for.</param>\r\n            <param name=\"ruleBeingBuilt\">The rule that's being built.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcher\">\r\n            <summary>\r\n            Represents a predicate that matches a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ICallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a value indicating whether the call matches the predicate.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to match.</param>\r\n            <returns>True if the call matches the predicate.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configure\">\r\n            <summary>\r\n            Provides configuration of faked objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configure.Fake``1(``0)\">\r\n            <summary>\r\n            Gets a configuration for the specified faked object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified object is not a faked object.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject parameter was null.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ArgumentInfo\">\r\n            <summary>\r\n            Represents an argument and a dummy value to use for that argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ArgumentInfo.#ctor(System.Boolean,System.Type,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ArgumentInfo\"/> class.\r\n            </summary>\r\n            <param name=\"wasSuccessfullyResolved\">A value indicating if the dummy value was successfully resolved.</param>\r\n            <param name=\"typeOfArgument\">The type of argument.</param>\r\n            <param name=\"resolvedValue\">The resolved value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.WasSuccessfullyResolved\">\r\n            <summary>\r\n            Gets a value indicating if a dummy argument value was successfully\r\n            resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.TypeOfArgument\">\r\n            <summary>\r\n            Gets the type of the argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.ResolvedValue\">\r\n            <summary>\r\n            Gets the resolved value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallInterceptedEventArgs\">\r\n            <summary>\r\n            Represents an event that happens when a call has been intercepted by a proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallInterceptedEventArgs.#ctor(FakeItEasy.Core.IWritableFakeObjectCall)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.CallInterceptedEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"call\">The call.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallInterceptedEventArgs.Call\">\r\n            <summary>\r\n            Gets the call that was intercepted.\r\n            </summary>\r\n            <value>The call.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallRuleMetadata\">\r\n            <summary>\r\n            Keeps track of metadata for interceptions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallRuleMetadata.HasNotBeenCalledSpecifiedNumberOfTimes\">\r\n            <summary>\r\n            Gets whether the rule has been called the number of times specified or not.\r\n            </summary>\r\n            <returns>True if the rule has not been called the number of times specified.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.CalledNumberOfTimes\">\r\n            <summary>\r\n            Gets or sets the number of times the rule has been used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.Rule\">\r\n            <summary>\r\n            Gets or sets the rule this metadata object is tracking.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentConstraintManager`1\">\r\n            <summary>\r\n            Manages attaching of argument constraints.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentConstraintManager`1.Matches(System.Func{`0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate that should constrain the argument.</param>\r\n            <param name=\"descriptionWriter\">An action that will be write a description of the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentConstraintManager`1.Not\">\r\n            <summary>\r\n            Inverts the logic of the matches method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IArgumentConstraint\">\r\n            <summary>\r\n            Validates an argument, checks that it's valid in a specific fake call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.WriteDescription(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of the arguemnt constraint to the specified writer.\r\n            </summary>\r\n            <param name=\"writer\">\r\n            The writer.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.IsValid(System.Object)\">\r\n            <summary>\r\n            Gets whether the argument is valid.\r\n            </summary>\r\n            <param name=\"argument\">The argument to validate.</param>\r\n            <returns>True if the argument is valid.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeManagerAccessor\">\r\n            <summary>\r\n            Default implementation of the fake manager attacher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeManagerAccessor\">\r\n            <summary>\r\n            Attaches a fake manager to the proxy so that intercepted\r\n            calls can be configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ITaggable\">\r\n            <summary>\r\n            Represents an object that can be tagged with another object. When implemented\r\n            by a proxy returned from an <see cref=\"T:FakeItEasy.Creation.IProxyGenerator\"/> FakeItEasy uses the tag\r\n            to store a reference to the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> that handles that proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ITaggable.Tag\">\r\n            <summary>\r\n            Gets or sets the tag for the taggable object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeObjectCallFormatter\">\r\n            <summary>\r\n            The default implementation of the IFakeObjectCallFormatter interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallFormatter\">\r\n            <summary>\r\n            Provides string formatting for fake object calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeWrapperConfigurer\">\r\n            <summary>\r\n            Handles configuring of fake objects to delegate all their calls to a wrapped instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeWrapperConfigurer\">\r\n            <summary>\r\n            Manages configuration of fake objects to wrap instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\">\r\n            <summary>\r\n            A fake object container where delegates can be registered that are used to\r\n            resolve fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectContainer\">\r\n            <summary>\r\n            A container that can create fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectConfigurator\">\r\n            <summary>\r\n            Handles global configuration of fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectConfigurator.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a dummy object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The dummy object that was created if the method returns true.</param>\r\n            <returns>True if a dummy object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\"/> class. \r\n            Creates a new instance of the DelegateFakeObjectContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake.</param>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.Register``1(System.Func{``0})\">\r\n            <summary>\r\n            Registers the specified fake delegate.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"fakeDelegate\">The fake delegate.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DynamicContainer\">\r\n            <summary>\r\n            A IFakeObjectContainer implementation that uses mef to load IFakeDefinitions and\r\n            IFakeConfigurations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.IDummyDefinition},System.Collections.Generic.IEnumerable{FakeItEasy.IFakeConfigurator})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DynamicContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of fake object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeCreationException\">\r\n            <summary>\r\n            An exception that is thrown when there was an error creating a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager\">\r\n            <summary>\r\n            The central point in the API for proxied fake objects handles interception\r\n            of fake object calls by using a set of rules. User defined rules can be inserted\r\n            by using the AddRule-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleFirst(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule to the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleLast(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule last in the list of user rules, meaning it has the lowest priority possible.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.RemoveRule(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Removes the specified rule for the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to remove.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddInterceptionListener(FakeItEasy.Core.IInterceptionListener)\">\r\n            <summary>\r\n            Adds an interception listener to the manager.\r\n            </summary>\r\n            <param name=\"listener\">The listener to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.ClearUserRules\">\r\n            <summary>\r\n            Removes any specified user rules.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Object\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.FakeObjectType\">\r\n            <summary>\r\n            Gets the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Rules\">\r\n            <summary>\r\n            Gets the interceptions that are currently registered with the fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.RecordedCallsInScope\">\r\n            <summary>\r\n            Gets a collection of all the calls made to the fake object within the current scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager.Factory\">\r\n            <summary>\r\n            A delegate responsible for creating FakeObject instances.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptedFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object at interception time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IWritableFakeObjectCall\">\r\n            <summary>\r\n            Represents a fake object call that can be edited.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"value\">The return value to set.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method of the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the value of the argument at the specified index in the parameters list.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value of.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptedFakeObjectCall.DoNotRecordCall\">\r\n            <summary>\r\n            Sets that the call should not be recorded by the fake manager.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeScope\">\r\n            <summary>\r\n            Represents a scope for fake objects, calls configured within a scope\r\n            are only valid within that scope. Only calls made wihtin a scope\r\n            are accessible from within a scope so for example asserts will only\r\n            assert on those calls done within the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeScope\">\r\n            <summary>\r\n            Provides access to all calls made to fake objects within a scope.\r\n            Scopes calls so that only calls made within the scope are visible.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope, using the specified\r\n            container as the container for the new scope.\r\n            </summary>\r\n            <param name=\"container\">The container to usee for the new scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Dispose\">\r\n            <summary>\r\n            Closes the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddInterceptedCall(FakeItEasy.Core.FakeManager,FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Adds an intercepted call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"call\">The call that is intercepted.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddRuleFirst(FakeItEasy.Core.FakeManager,FakeItEasy.Core.CallRuleMetadata)\">\r\n            <summary>\r\n            Adds a fake object call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICompletedFakeObjectCall\">\r\n            <summary>\r\n            Represents a completed call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICompletedFakeObjectCall.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IEventRaiserArguments\">\r\n            <summary>\r\n            Used by the event raising rule of fake objects to get the event arguments used in\r\n            a call to Raise.With.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.Sender\">\r\n            <summary>\r\n            The sender of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.EventArguments\">\r\n            <summary>\r\n            The event arguments of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptionListener\">\r\n            <summary>\r\n            Represents a listener for fake object calls, can be plugged into a\r\n            FakeManager instance to listen to all intercepted calls.\r\n            </summary>\r\n            <remarks>The OnBeforeCallIntercepted method will be invoked before the OnBeforeCallIntercepted method of any\r\n            previously added listener. The OnAfterCallIntercepted method will be invoked after the OnAfterCallIntercepted\r\n            method of any previously added listener.</remarks>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnBeforeCallIntercepted(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Called when the interception begins but before any call rules\r\n            has been applied.\r\n            </summary>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnAfterCallIntercepted(FakeItEasy.Core.ICompletedFakeObjectCall,FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Called when the interception has been completed and rules has been\r\n            applied.\r\n            </summary>\r\n            <param name=\"ruleThatWasApplied\">The rule that was applied to the call.</param>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.MethodInfoManager\">\r\n            <summary>\r\n            Handles comparisons of MethodInfos.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.MethodInfoManager.WillInvokeSameMethodOnTarget(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n            Gets a value indicating if the two method infos would invoke the same method\r\n            if invoked on an instance of the target type.\r\n            </summary>\r\n            <param name=\"target\">The type of target for invokation.</param>\r\n            <param name=\"first\">The first MethodInfo.</param>\r\n            <param name=\"second\">The second MethodInfo.</param>\r\n            <returns>True if the same method would be invoked.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.NullFakeObjectContainer\">\r\n            <summary>\r\n            A null implementation for the IFakeObjectContainer interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Always returns false and sets the fakeObject to null.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">Output variable for the fake object that will always be set to null.</param>\r\n            <returns>Always return false.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.Core.IFakeObjectCall},FakeItEasy.Core.CallWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.OrderedFakeAsserter\"/> class.\r\n            </summary>\r\n            <param name=\"calls\">The calls.</param>\r\n            <param name=\"callWriter\">The call writer.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.AssertWasCalled(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.String,System.Func{System.Int32,System.Boolean},System.String)\">\r\n            <summary>\r\n            Asserts the was called.\r\n            </summary>\r\n            <param name=\"callPredicate\">The call predicate.</param>\r\n            <param name=\"callDescription\">The call description.</param>\r\n            <param name=\"repeatPredicate\">The repeat predicate.</param>\r\n            <param name=\"repeatDescription\">The repeat description.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.WrappedObjectRule\">\r\n            <summary>\r\n            A call rule that applies to any call and just delegates the\r\n            call to the wrapped object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.WrappedObjectRule\"/> class. \r\n            Creates a new instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">\r\n            The object to wrap.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.WrappedObjectRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IProxyGenerator\">\r\n            <summary>\r\n            An interface to be implemented by classes that can generate proxies for FakeItEasy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.GenerateProxy(System.Type,System.Collections.Generic.IEnumerable{System.Type},System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Generates a proxy of the specifed type and returns a result object containing information\r\n            about the success of the generation and the proxy if it was generated.\r\n            </summary>\r\n            <param name=\"typeOfProxy\">The type of proxy to generate.</param>\r\n            <param name=\"additionalInterfacesToImplement\">Interfaces to be implemented by the proxy.</param>\r\n            <param name=\"argumentsForConstructor\">Arguments to pass to the constructor of the type in <paramref name=\"typeOfProxy\" />.</param>\r\n            <returns>A result containging the generated proxy.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.MethodCanBeInterceptedOnInstance(System.Reflection.MethodInfo,System.Object,System.String@)\">\r\n            <summary>\r\n            Gets a value indicating if the specified member can be intercepted by the proxy generator.\r\n            </summary>\r\n            <param name=\"method\">The member to test.</param>\r\n            <param name=\"callTarget\">The instance the method will be called on.</param>\r\n            <param name=\"failReason\">The reason the method can not be intercepted.</param>\r\n            <returns>True if the member can be intercepted.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ICallInterceptedEventRaiser\">\r\n            <summary>\r\n            An object that raises an event every time a call to a proxy has been intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:FakeItEasy.Creation.ICallInterceptedEventRaiser.CallWasIntercepted\">\r\n            <summary>\r\n            Raised when a call is intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\">\r\n            <summary>\r\n            An adapter that adapts an <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> to a <see cref=\"T:FakeItEasy.Core.IFakeObjectCall\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.#ctor(Castle.DynamicProxy.IInvocation)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"invocation\">The invocation.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method, should not be used with interface types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the specified value to the argument at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value to.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ToString\">\r\n            <summary>\r\n            Returns a description of the call.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Description\">\r\n            <summary>\r\n            A human readable description of the call.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorDoesNotMatchAnyConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matches the passed arguments for constructor..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorOnInterfaceTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor specified for interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsSealedTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy &quot;{0}&quot; is sealed..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsValueTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy must be an interface or a class but it was {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyTypeWithNoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No default constructor was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeAndDummyManager\">\r\n            <summary>\r\n            The default implementation of the IFakeAndDummyManager interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeAndDummyManager\">\r\n            <summary>\r\n            Handles the creation of fake and dummy objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateDummy(System.Type)\">\r\n            <summary>\r\n            Creates a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type and\r\n            the current IFakeObjectContainer does not contain the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateFake(System.Type,FakeItEasy.Creation.FakeOptions)\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake object to generate.</param>\r\n            <param name=\"options\">Options for building the fake object.</param>\r\n            <returns>A fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateDummy(System.Type,System.Object@)\">\r\n            <summary>\r\n            Tries to create a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <param name=\"result\">Outputs the result dummy when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateFake(System.Type,FakeItEasy.Creation.FakeOptions,System.Object@)\">\r\n            <summary>\r\n            Tries to create a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake to create.</param>\r\n            <param name=\"options\">Options for the creation of the fake.</param>\r\n            <param name=\"result\">The created fake object when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\">\r\n            <summary>\r\n            Default implementation ofthe IFakeCreator-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeCreatorFacade\">\r\n            <summary>\r\n            A facade used by the public api for testability.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.#ctor(FakeItEasy.Creation.IFakeAndDummyManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\"/> class.\r\n            </summary>\r\n            <param name=\"fakeAndDummyManager\">The fake and dummy manager.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>\r\n            A collection of fake objects of the specified type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1\">\r\n            <summary>\r\n            Provides options for fake wrappers.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilder`1\">\r\n            <summary>\r\n            Provides options for generating fake object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class.\r\n            </summary>\r\n            <param name=\"argumentsForConstructor\">The arguments to pass to the consturctor of the faked class.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Linq.Expressions.Expression{System.Func{`0}})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class by giving an expression with the call to\r\n            the desired constructor using the arguments to be passed to the constructor.\r\n            </summary>\r\n            <param name=\"constructorCall\">The constructor call to use when creating a class proxy.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Wrapping(`0)\">\r\n            <summary>\r\n            Specifies that the fake should delegate calls to the specified instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">The object to delegate calls to.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Implements(System.Type)\">\r\n            <summary>\r\n            Sets up the fake to implement the specified interface in addition to the\r\n            originally faked class.\r\n            </summary>\r\n            <param name=\"interfaceType\">The type of interface to implement.</param>\r\n            <returns>Options object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified type is not an interface.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified type is null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.OnFakeCreated(System.Action{`0})\">\r\n            <summary>\r\n            Specifies an action that should be run over the fake object\r\n            once it's created.\r\n            </summary>\r\n            <param name=\"action\">An action to perform.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1.RecordedBy(FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Specifies a fake recorder to use.\r\n            </summary>\r\n            <param name=\"recorder\">The recorder to use.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DummyValueCreationSession.#ctor(FakeItEasy.Core.IFakeObjectContainer,FakeItEasy.Creation.IFakeObjectCreator)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DummyValueCreationSession\"/> class.\r\n            </summary>\r\n            <param name=\"container\">The container.</param>\r\n            <param name=\"fakeObjectCreator\">The fake object creator.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ProxyGeneratorResult\">\r\n            <summary>\r\n            Contains the result of a call to TryCreateProxy of IProxyGenerator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a failed proxy\r\n            generation attempt.\r\n            </summary>\r\n            <param name=\"reasonForFailure\">\r\n            The reason the proxy generation failed.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a successful proxy\r\n            generation.\r\n            </summary>\r\n            <param name=\"generatedProxy\">\r\n            The proxy that was generated.\r\n            </param>\r\n            <param name=\"callInterceptedEventRaiser\">\r\n            An event raiser that raises\r\n            events when calls are intercepted to the proxy.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ProxyWasSuccessfullyGenerated\">\r\n            <summary>\r\n            Gets a value indicating if the proxy was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.GeneratedProxy\">\r\n            <summary>\r\n            Gets the generated proxy when it was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.CallInterceptedEventRaiser\">\r\n            <summary>\r\n            Gets the event raiser that raises events when calls to the proxy are\r\n            intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ReasonForFailure\">\r\n            <summary>\r\n            Gets the reason for failure when the generation was not successful.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IOutputWriter\">\r\n            <summary>\r\n            Represents a text writer that writes to the output.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Write(System.String)\">\r\n            <summary>\r\n            Writes the specified value to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chaining.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.WriteArgumentValue(System.Object)\">\r\n            <summary>\r\n            Formats the specified argument value as a string and writes\r\n            it to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chainging.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Indent\">\r\n            <summary>\r\n            Indents the writer.\r\n            </summary>\r\n            <returns>A disposable that will unindent the writer when disposed.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.DummyDefinition`1\">\r\n            <summary>\r\n            Represents a definition of how a fake object of the type T should\r\n            be created.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IDummyDefinition\">\r\n            <summary>\r\n            Represents a definition of how dummies of the specified type should be created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IDummyDefinition.CreateDummy\">\r\n            <summary>\r\n            Creates the fake.\r\n            </summary>\r\n            <returns>The fake object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IDummyDefinition.ForType\">\r\n            <summary>\r\n            The type of fake object the definition is for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.FakeItEasy#IDummyDefinition#CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.DummyDefinition`1.ForType\">\r\n            <summary>\r\n            Gets the type the definition is for.\r\n            </summary>\r\n            <value>For type.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExceptionMessages\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ApplicatorNotSetExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The Apply method of the ExpressionInterceptor may no be called before the Applicator property has been set..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentNameDoesNotExist\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified argument name does not exist in the ArgumentList..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentsForConstructorOnInterfaceType\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor was specified when generating proxy of interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentValidationDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to An argument validation was not configured correctly..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooFewTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too few times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooManyTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too many times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CanNotGenerateFakeMessage\">\r\n             <summary>\r\n               Looks up a localized string similar to Can not create fake of the type &apos;{0}&apos;, it&apos;s not registered in the current container and the current IProxyGenerator can not generate the fake.\r\n            \r\n            The following constructors failed:\r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ConfiguringNonFakeObjectExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Error when accessing FakeObject, the specified argument is of the type &apos;{0}&apos; which is not faked..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CreatingExpressionCallMatcherWithNonMethodOrPropertyExpression\">\r\n            <summary>\r\n              Looks up a localized string similar to An ExpressionCallMatcher can only be created for expressions that represents a method call or a property getter..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateFakeWithArgumentsForConstructorPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to The current proxy generator failed to create a proxy with the specified arguments for the constructor:\r\n            \r\n              Reason for failure:\r\n                - {0}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateProxyPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to FakeItEasy failed to create fake object of type &quot;{0}&quot;.\r\n            \r\n            1. The type is not registered in the current IFakeObjectContainer.\r\n            2. The current IProxyGenerator failed to generate a proxy for the following reason:\r\n            \r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakeCreationExceptionDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Unable to create fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakingNonAbstractClassWithArgumentsForConstructor\">\r\n            <summary>\r\n              Looks up a localized string similar to Only abstract classes can be faked using the A.Fake-method that takes an enumerable of objects as arguments for constructor, use the overload that takes an expression instead..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberAccessorNotCorrectExpressionType\">\r\n            <summary>\r\n              Looks up a localized string similar to The member accessor expression must be a lambda expression with a MethodCallExpression or MemberAccessExpression as its body..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberCanNotBeIntercepted\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified method can not be configured since it can not be intercepted by the current IProxyGenerator..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MethodMissmatchWhenPlayingBackRecording\">\r\n            <summary>\r\n              Looks up a localized string similar to The method of the call did not match the method of the recorded call, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoConstructorMatchingArguments\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matching the specified arguments was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Can not generate fake object for the class since no default constructor was found, specify a constructor call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoMoreRecordedCalls\">\r\n            <summary>\r\n              Looks up a localized string similar to All the recorded calls has been applied, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NonConstructorExpressionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Only expression of the type ExpressionType.New (constructor calls) are accepted..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NowCalledDirectly\">\r\n            <summary>\r\n              Looks up a localized string similar to The Now-method on the event raise is not meant to be called directly, only use it to register to an event on a fake object that you want to be raised..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NumberOfOutAndRefParametersDoesNotMatchCall\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of values for out and ref parameters specified does not match the number of out and ref parameters in the call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.OrderedAssertionsAlreadyOpen\">\r\n            <summary>\r\n              Looks up a localized string similar to A scope for ordered assertions is already opened, close that scope before opening another one..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.SpecifiedCallIsNotToFakedObject\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified call is not made on a fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.TypeCanNotBeProxied\">\r\n            <summary>\r\n              Looks up a localized string similar to The current fake proxy generator can not create proxies of the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.UnableToCreateDummyPattern\">\r\n            <summary>\r\n              Looks up a localized string similar to FakeItEasy was unable to create dummy of type &quot;{0}&quot;, register it in the current IFakeObjectContainer to enable this..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WasCalledWrongNumberOfTimes\">\r\n            <summary>\r\n              Looks up a localized string similar to Expected to find call {0} the number of times specified by the predicate &apos;{1}&apos; but found it {2} times among the calls:.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WrongNumberOfArgumentNamesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of argument names does not match the number of arguments..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExpectationException\">\r\n            <summary>\r\n            An exception thrown when an expection is not met (when asserting on fake object calls).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ICallExpressionParser\">\r\n            <summary>\r\n            Represents a class that can parse a lambda expression\r\n            that represents a method or property call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ICallExpressionParser.Parse(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Parses the specified expression.\r\n            </summary>\r\n            <param name=\"callExpression\">The expression to parse.</param>\r\n            <returns>The parsed expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\">\r\n            <summary>\r\n            Handles the matching of fake object calls to expressions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.#ctor(System.Linq.Expressions.LambdaExpression,FakeItEasy.Expressions.ExpressionArgumentConstraintFactory,FakeItEasy.Core.MethodInfoManager,FakeItEasy.Expressions.ICallExpressionParser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\"/> class.\r\n            </summary>\r\n            <param name=\"callSpecification\">The call specification.</param>\r\n            <param name=\"constraintFactory\">The constraint factory.</param>\r\n            <param name=\"callExpressionParser\">A parser to use to parse call expressions.</param>\r\n            <param name=\"methodInfoManager\">The method infor manager to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Matcheses the specified call against the expression.\r\n            </summary>\r\n            <param name=\"call\">The call to match.</param>\r\n            <returns>True if the call is matched by the expression.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.ToString\">\r\n            <summary>\r\n            Gets a description of the call.\r\n            </summary>\r\n            <returns>Description of the call.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Expressions.ExpressionCallMatcher.DescriptionOfMatchingCall\">\r\n            <summary>\r\n            Gets a human readable description of calls that will be matched by this\r\n            matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule\">\r\n            <summary>\r\n            An implementation of the <see cref=\"T:FakeItEasy.Core.IFakeObjectCallRule\"/> interface that uses\r\n            expressions for evaluating if the rule is applicable to a specific call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.#ctor(FakeItEasy.Expressions.ExpressionCallMatcher)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallRule\"/> class.\r\n            </summary>\r\n            <param name=\"expressionMatcher\">The expression matcher to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule.Factory\">\r\n            <summary>\r\n            Handles the instantiation of ExpressionCallRule instance.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call.</param>\r\n            <returns>A rule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.IExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.IExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>The FakeManager instance that manages the faked object the call is made on.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>A FakeObject.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax\">\r\n            <summary>\r\n            Provides extension methods for configuring and asserting on faked objects\r\n            without going through the static methods of the Fake-class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``2(``0,System.Linq.Expressions.Expression{System.Func{``0,``1}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``1(``0,System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.AnyCall``1(``0)\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Syntax\">\r\n            <summary>\r\n            Provides an extension method for configuring fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Syntax.Configure``1(``0)\">\r\n            <summary>\r\n            Gets an object that provides a fluent interface syntax for configuring\r\n            the fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakedObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject was null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake\">\r\n            <summary>\r\n            Provides static methods for accessing fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake object that manages the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to get the manager object for.</param>\r\n            <returns>The fake object manager.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <param name=\"container\">The container to use within the specified scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetCalls(System.Object)\">\r\n            <summary>\r\n            Gets all the calls made to the specified fake object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A collection containing the calls to the object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ClearConfiguration(System.Object)\">\r\n            <summary>\r\n            Cleares the configuration of the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to clear the configuration of.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.InitializeFixture(System.Object)\">\r\n            <summary>\r\n            Sets a new fake to each property or field that is tagged with the FakeAttribute in the specified\r\n            fixture.\r\n            </summary>\r\n            <param name=\"fixture\">The object to initialize.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake`1\">\r\n            <summary>\r\n            Represents a fake object that provides an api for configuring a faked object, exposed by the\r\n            FakedObject-property.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the faked object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{`0}})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object using the specified options.\r\n            </summary>\r\n            <param name=\"options\">\r\n            Options used to create the fake object.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of value the member returns.</typeparam>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.AnyCall\">\r\n            <summary>\r\n            Configures any call to the fake object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.FakedObject\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.RecordedCalls\">\r\n            <summary>\r\n            Gets all calls made to the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized through the\r\n            Fake.Initialize-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeConfigurator`1\">\r\n            <summary>\r\n            Provides the base implementation for the IFakeConfigurator-interface.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes the configurator can configure.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFakeConfigurator\">\r\n            <summary>\r\n            Provides configurations for fake objects of a specific type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFakeConfigurator.ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IFakeConfigurator.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.ConfigureFake(`0)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.FakeItEasy#IFakeConfigurator#ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.AssertThatFakeIsOfCorrectType(System.Object)\">\r\n            <summary>\r\n            Asserts the type of the that fake is of correct.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.FakeConfigurator`1.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeExtensions\">\r\n            <summary>\r\n            Provides extension methods for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Once(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(1) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 1 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Twice(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(2) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 2 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WithAnyArguments``1(FakeItEasy.Configuration.IArgumentValidationConfiguration{``0})\">\r\n            <summary>\r\n            Specifies that a call to the configured call should be applied no matter what arguments\r\n            are used in the call to the faked object.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration.</param>\r\n            <returns>A configuration object</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Matching``1(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall},System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Filters to contain only the calls that matches the call specification.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake the call is made on.</typeparam>\r\n            <param name=\"calls\">The calls to filter.</param>\r\n            <param name=\"callSpecification\">The call to match on.</param>\r\n            <returns>A collection of the calls that matches the call specification.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified call must have happened once or more.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustNotHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified has not happened.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsNextFromSequence``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0[])\">\r\n            <summary>\r\n            Configures the call to return the next value from the specified sequence each time it's called. Null will\r\n            be returned when all the values in the sequence has been returned.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The type of return value.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The call configuration to extend.\r\n            </param>\r\n            <param name=\"values\">\r\n            The values to return in sequence.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Returns``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0)\">\r\n            <summary>\r\n            Specifies the value to return when the configured call is made.\r\n            </summary>\r\n            <param name=\"value\">The value to return.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``2(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``3(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``4(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``5(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``4,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Write``1(System.Collections.Generic.IEnumerable{``0},FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes the calls in the collection to the specified text writer.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n            <param name=\"writer\">The writer to write the calls to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WriteToConsole``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Writes all calls in the collection to the console.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.Int32)\">\r\n            <summary>\r\n            Gets the argument at the specified index in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentIndex\">The index of the argument.</param>\r\n            <returns>The value of the argument with the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.String)\">\r\n            <summary>\r\n            Gets the argument with the specified name in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentName\">The name of the argument.</param>\r\n            <returns>The value of the argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Strict``1(FakeItEasy.Creation.IFakeOptionsBuilder{``0})\">\r\n            <summary>\r\n            Makes the fake strict, this means that any call to the fake\r\n            that has not been explicitly configured will throw an exception.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object.</typeparam>\r\n            <param name=\"options\">The configuration.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Where``1(FakeItEasy.Configuration.IWhereConfiguration{``0},System.Linq.Expressions.Expression{System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean}})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The return type of the where method.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The configuration object to extend.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            A predicate for a fake object call.\r\n            </param>\r\n            to the output.\r\n            <returns>\r\n            The configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``1(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action)\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made. This overload can also be used to fake calls with arguments when they don't need to be accessed.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action\"/> to invoke</param>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``2(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`1\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``3(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`2\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``4(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`3\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``5(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3,``4})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`4\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Guard\">\r\n            <summary>\r\n            Provides methods for guarding method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNull(System.Object,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is null.\r\n            </summary>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified argument was null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.IsInRange``1(``0,``0,``0,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is not in the given range.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"lowerBound\">The lower bound.</param>\r\n            <param name=\"upperBound\">The upper bound.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">The specified argument was not in the given range.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Throws an ArgumentNullException if the specified string is null or empty.\r\n            </summary>\r\n            <param name=\"value\">The value to guard.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Helpers.GetValueProducedByExpression(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Gets the value produced by the specified expression when compiled and invoked.\r\n            </summary>\r\n            <param name=\"expression\">The expression to get the value from.</param>\r\n            <returns>The value produced by the expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFileSystem\">\r\n            <summary>\r\n            Provides access to the file system.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Open(System.String,System.IO.FileMode)\">\r\n            <summary>\r\n            Opens the specified file in the specified mode.\r\n            </summary>\r\n            <param name=\"fileName\">The full path and name of the file to open.</param>\r\n            <param name=\"mode\">The mode to open the file in.</param>\r\n            <returns>A stream for reading and writing the file.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.FileExists(System.String)\">\r\n            <summary>\r\n            Gets a value indicating if the specified file exists.\r\n            </summary>\r\n            <param name=\"fileName\">The path and name of the file to check.</param>\r\n            <returns>True if the file exists.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Create(System.String)\">\r\n            <summary>\r\n            Creates a file with the specified name.\r\n            </summary>\r\n            <param name=\"fileName\">The name of the file to create.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.DictionaryContainer\">\r\n            <summary>\r\n            A simple implementation of an IoC container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.IoC.DictionaryContainer.registeredServices\">\r\n            <summary>\r\n            The dictionary that stores the registered services.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.IoC.DictionaryContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Resolve(System.Type)\">\r\n            <summary>\r\n            Resolves an instance of the specified component type.\r\n            </summary>\r\n            <param name=\"componentType\">Type of the component.</param>\r\n            <returns>An instance of the component type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Register``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.RegisterSingleton``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver as a singleton.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IRepeatSpecification\">\r\n            <summary>\r\n            Provides properties and methods to specify repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IRepeatSpecification.Times(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times as repeat.\r\n            </summary>\r\n            <param name=\"numberOfTimes\">The number of times expected.</param>\r\n            <returns>A Repeated instance.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Once\">\r\n            <summary>\r\n            Specifies once as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Twice\">\r\n            <summary>\r\n            Specifies twice as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Logger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n            Writes the specified message to the logger.\r\n            </summary>\r\n            <param name=\"message\">The message to write.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.NextCall\">\r\n            <summary>\r\n            Lets you specify options for the next call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.NextCall.To``1(``0)\">\r\n            <summary>\r\n            Specifies options for the next call to the specified fake object. The next call will\r\n            be recorded as a call configuration.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the faked object.</typeparam>\r\n            <param name=\"fake\">The faked object to configure.</param>\r\n            <returns>A call configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OrderedAssertion\">\r\n            <summary>\r\n            Provides functionality for making ordered assertions on fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OrderedAssertion.OrderedAssertions(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall})\">\r\n            <summary>\r\n            Creates a scope that changes the behavior on asserts so that all asserts within\r\n            the scope must be to calls in the specified collection of calls. Calls must have happened\r\n            in the order that the asserts are specified or the asserts will fail.\r\n            </summary>\r\n            <param name=\"calls\">The calls to assert among.</param>\r\n            <returns>A disposable used to close the scope.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OutputWriter\">\r\n            <summary>\r\n            Provides static methods for the IOutputWriter-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.WriteLine(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a new line to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.String,System.Object[])\">\r\n            <summary>\r\n            Writes the format string to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"format\">The format string to write.</param>\r\n            <param name=\"args\">Replacements for the format string.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.Object)\">\r\n            <summary>\r\n            Writes the specified object to the writer (using the ToString-method of the object).\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"value\">The value to write to the writer.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise\">\r\n            <summary>\r\n            Allows the developer to raise an event on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(System.Object,``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>A Raise(TEventArgs)-object that exposes the eventhandler to attatch.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event arguments.</typeparam>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.WithEmpty\">\r\n            <summary>\r\n            Raises an event with empty event arguments on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise`1\">\r\n            <summary>\r\n            A class exposing an event handler to attatch to an event of a faked object\r\n            in order to raise that event.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise`1.Now(System.Object,`0)\">\r\n            <summary>\r\n            Register this event handler to an event on a faked object in order to raise that event.\r\n            </summary>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">Event args for the event.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Raise`1.Go\">\r\n            <summary>\r\n            Gets a generic event handler to attatch to the event to raise.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Recorders\">\r\n            <summary>\r\n            Provides methods for creating recorders for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Repeated\">\r\n            <summary>\r\n            Provides syntax for specifying the number of times a call must have been repeated when asserting on \r\n            fake object calls.\r\n            </summary>\r\n            <example>A.CallTo(() => foo.Bar()).Assert(Happened.Once.Exactly);</example>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Like(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})\">\r\n            <summary>\r\n            Specifies that a call must have been repeated a number of times\r\n            that is validated by the specified repeatValidation argument.\r\n            </summary>\r\n            <param name=\"repeatValidation\">A predicate that specifies the number of times\r\n            a call must have been made.</param>\r\n            <returns>A Repeated-instance.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Matches(System.Int32)\">\r\n            <summary>\r\n            When implemented gets a value indicating if the repeat is matched\r\n            by the Happened-instance.\r\n            </summary>\r\n            <param name=\"repeat\">The repeat of a call.</param>\r\n            <returns>True if the repeat is a match.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Never\">\r\n            <summary>\r\n            Asserts that a call has not happened at all.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Exactly\">\r\n            <summary>\r\n            The call must have happened exactly the number of times that is specified in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.AtLeast\">\r\n            <summary>\r\n            The call must have happened any number of times greater than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.NoMoreThan\">\r\n            <summary>\r\n            The call must have happened any number of times less than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.RootModule\">\r\n            <summary>\r\n            Handles the registration of root dependencies in an IoC-container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.RootModule.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the dependencies.\r\n            </summary>\r\n            <param name=\"container\">The container to register the dependencies in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.CallData\">\r\n            <summary>\r\n            DTO for recorded calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.CallData.#ctor(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{System.Object},System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.CallData\"/> class.\r\n            </summary>\r\n            <param name=\"method\">The method.</param>\r\n            <param name=\"outputArguments\">The output arguments.</param>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.Method\">\r\n            <summary>\r\n            Gets the method that was called.\r\n            </summary>\r\n            <value>The method.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.OutputArguments\">\r\n            <summary>\r\n            Gets the output arguments of the call.\r\n            </summary>\r\n            <value>The output arguments.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.ReturnValue\">\r\n            <summary>\r\n            Gets the return value of the call.\r\n            </summary>\r\n            <value>The return value.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ICallStorage\">\r\n            <summary>\r\n            Represents storage for recorded calls for self initializing\r\n            fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>The recorded calls for the recording with the specified id.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder\">\r\n            <summary>\r\n            An interface for recorders that provides stored responses for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\">\r\n            <summary>\r\n            An exception that can be thrown when recording for self initialized\r\n            fakes fails or when playback fails.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\">\r\n            <summary>\r\n            Manages the applying of recorded calls and recording of new calls when\r\n            using self initialized fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.#ctor(FakeItEasy.SelfInitializedFakes.ICallStorage)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\"/> class.\r\n            </summary>\r\n            <param name=\"storage\">The storage.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.Dispose\">\r\n            <summary>\r\n            Saves all recorded calls to the storage.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.RecordingManager.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager.Factory\">\r\n            <summary>\r\n            Represents a factory responsible for creating recording manager\r\n            instances.\r\n            </summary>\r\n            <param name=\"storage\">The storage the manager should use.</param>\r\n            <returns>A RecordingManager instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\">\r\n            <summary>\r\n            A call rule use for self initializing fakes, delegates call to\r\n            be applied by the recorder.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.#ctor(FakeItEasy.Core.IFakeObjectCallRule,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\"/> class.\r\n            </summary>\r\n            <param name=\"wrappedRule\">The wrapped rule.</param>\r\n            <param name=\"recorder\">The recorder.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SmellyAttribute\">\r\n            <summary>\r\n            An attribute that can be applied to code that should be fixed becuase theres a\r\n            code smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SmellyAttribute.Description\">\r\n            <summary>\r\n            A description of the smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.UnderTestAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized as a SUT through the Fake.Initialize-mehtod.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/FakeItEasy.1.7.4507.61/lib/SL4/FakeItEasy.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>FakeItEasy</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:FakeItEasy.A\">\r\n            <summary>\r\n            Provides methods for generating fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Fake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the type T.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object to create.</typeparam>\r\n            <param name=\"options\">A lambda where options for the built fake object cna be specified.</param>\r\n            <returns>A fake object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Dummy``1\">\r\n            <summary>\r\n            Gets a dummy object of the specified type. The value of a dummy object\r\n            should be irrelevant. Dummy objects should not be configured.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to return.</typeparam>\r\n            <returns>A dummy object of the specified type.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">Dummies of the specified type can not be created.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Linq.Expressions.Expression{System.Action})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fake\">\r\n            The fake to configure.\r\n            </param>\r\n            <returns>\r\n            A configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.A.CallTo``1(System.Linq.Expressions.Expression{System.Func{``0}})\">\r\n            <summary>\r\n            Configures a call to a faked object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of member on the faked object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression where the configured memeber is called.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.A`1\">\r\n            <summary>\r\n            Provides an api entry point for constraining arguments of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to validate.</typeparam>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.That\">\r\n            <summary>\r\n            Gets an argument constraint object that will be used to constrain a method call argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1._\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid. (This is a shortcut for the \"Ignored\"-property.)\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.A`1.Ignored\">\r\n            <summary>\r\n            Gets a constraint that considers any value of an argument as valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Any\">\r\n            <summary>\r\n            Provides configuration for any (not a specific) call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.CallTo(System.Object)\">\r\n            <summary>\r\n            Gets a configuration object allowing for further configuration of\r\n            any calll to the specified faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Any.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentCollection\">\r\n            <summary>\r\n              A collection of method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.ArgumentCollection.arguments\">\r\n            <summary>\r\n              The arguments this collection contains.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Collections.Generic.IEnumerable{System.String})\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"argumentNames\">The argument names.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.#ctor(System.Object[],System.Reflection.MethodInfo)\">\r\n            <summary>\r\n              Initializes a new instance of the <see cref=\"T:FakeItEasy.ArgumentCollection\"/> class.\r\n            </summary>\r\n            <param name=\"arguments\">The arguments.</param>\r\n            <param name=\"method\">The method.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.GetEnumerator\">\r\n            <summary>\r\n              Returns an enumerator that iterates through the collection or arguments.\r\n            </summary>\r\n            <returns>\r\n              A <see cref = \"T:System.Collections.Generic.IEnumerator`1\" /> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"index\">The index of the argument.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentCollection.Get``1(System.String)\">\r\n            <summary>\r\n              Gets the argument with the specified name.\r\n            </summary>\r\n            <typeparam name = \"T\">The type of the argument to get.</typeparam>\r\n            <param name = \"argumentName\">The name of the argument.</param>\r\n            <returns>The argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Empty\">\r\n            <summary>\r\n              Gets an empty ArgumentList.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Count\">\r\n            <summary>\r\n              Gets the number of arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.ArgumentNames\">\r\n            <summary>\r\n              Gets the names of the arguments in the list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentCollection.Item(System.Int32)\">\r\n            <summary>\r\n              Gets the argument at the specified index.\r\n            </summary>\r\n            <param name = \"argumentIndex\">The index of the argument to get.</param>\r\n            <returns>The argument at the specified index.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentConstraintExtensions\">\r\n            <summary>\r\n            Provides validation extension to the Argumentscope{T} class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNull``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Constrains an argument so that it must be null (Nothing in VB).\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string argument to contain the specified text.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The string the argument string should contain.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Contains``1(FakeItEasy.IArgumentConstraintManager{``0},System.Object)\">\r\n            <summary>\r\n            Constrains the sequence so that it must contain the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the collection should contain.</param>\r\n            <typeparam name=\"T\">The type of sequence.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.StartsWith(FakeItEasy.IArgumentConstraintManager{System.String},System.String)\">\r\n            <summary>\r\n            Constrains the string so that it must start with the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsNullOrEmpty(FakeItEasy.IArgumentConstraintManager{System.String})\">\r\n            <summary>\r\n            Constrains the string so that it must be null or empty.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsGreaterThan``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Constrains argument value so that it must be greater than the specified value.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value the string should start with.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsSameSequenceAs``1(FakeItEasy.IArgumentConstraintManager{``0},System.Collections.IEnumerable)\">\r\n            <summary>\r\n            The tested argument collection should contain the same elements as the\r\n            as the specified collection.\r\n            </summary>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The sequence to test against.</param>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEmpty``1(FakeItEasy.IArgumentConstraintManager{``0})\">\r\n            <summary>\r\n            Tests that the IEnumerable contains no items.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsEqualTo``1(FakeItEasy.IArgumentConstraintManager{``0},``0)\">\r\n            <summary>\r\n            Tests that the passed in argument is equal to the specified value.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument.</typeparam>\r\n            <param name=\"manager\">The constraint manager to match the constraint.</param>\r\n            <param name=\"value\">The value to compare to.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.IsInstanceOf``1(FakeItEasy.IArgumentConstraintManager{``0},System.Type)\">\r\n            <summary>\r\n            Constrains the argument to be of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument in the method signature.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"type\">The type to constrain the argument with.</param>\r\n            <returns>A dummy value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String)\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"description\">\r\n            A human readable description of the constraint.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.String,System.Object[])\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"manager\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <param name=\"descriptionFormat\">\r\n            A human readable description of the constraint format string.\r\n            </param>\r\n            <param name=\"args\">\r\n            Arguments for the format string.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.Matches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"scope\">\r\n            The constraint manager.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            The predicate that should constrain the argument.\r\n            </param>\r\n            <typeparam name=\"T\">\r\n            The type of argument in the method signature.\r\n            </typeparam>\r\n            <returns>\r\n            A dummy argument value.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentConstraintExtensions.NullCheckedMatches``1(FakeItEasy.IArgumentConstraintManager{``0},System.Func{``0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument to be not null (Nothing in VB) and to match\r\n            the specified predicate.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to constrain.</typeparam>\r\n            <param name=\"manager\">The constraint manager.</param>\r\n            <param name=\"predicate\">The predicate that constrains non null values.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the constraint\r\n            to the output.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ArgumentValueFormatter`1\">\r\n            <summary>\r\n            Provides string formatting for arguments of type T when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentValueFormatter\">\r\n            <summary>\r\n            Provides string formatting for arguments when written in \r\n            call lists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentValueFormatter.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentValueFormatter.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetArgumentValueAsString(System.Object)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ArgumentValueFormatter`1.GetStringValue(`0)\">\r\n            <summary>\r\n            Gets a string representing the specified argument value.\r\n            </summary>\r\n            <param name=\"argumentValue\">The argument value to get as a string.</param>\r\n            <returns>A string representation of the value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.ForType\">\r\n            <summary>\r\n            The type of arguments this formatter works on.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ArgumentValueFormatter`1.Priority\">\r\n            <summary>\r\n            The priority of the formatter, when two formatters are\r\n            registered for the same type the one with the highest\r\n            priority is used.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.CommonExtensions\">\r\n            <summary>\r\n            Provides extension methods for the common uses.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FormatInvariant(System.String,System.Object[])\">\r\n            <summary>\r\n            Replaces the format item in a specified System.String with the text equivalent\r\n            of the value of a corresponding System.Object instance in a specified array using\r\n            invariant culture as <see cref=\"T:System.IFormatProvider\"/>.\r\n            </summary>\r\n            <param name=\"format\">A composite format string.</param>\r\n            <param name=\"arguments\">An <see cref=\"T:System.Object\"/> array containing zero or more objects to format.</param>\r\n            <returns>The formatted string.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.Zip``2(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1})\">\r\n            <summary>\r\n            Gets an enumerable of tuples where the first value of each tuple is a value\r\n            from the first collection and the second value of each tuple is the value at the same postion\r\n            from the second collection.\r\n            </summary>\r\n            <typeparam name=\"TFirst\">The type of values in the first collection.</typeparam>\r\n            <typeparam name=\"TSecond\">The type of values in the second collection.</typeparam>\r\n            <param name=\"firstCollection\">The first of the collections to combine.</param>\r\n            <param name=\"secondCollection\">The second of the collections to combine.</param>\r\n            <returns>An enumerable of tuples.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.ToCollectionString``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String},System.String)\">\r\n            <summary>\r\n            Joins the collection to a string.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the collection.</typeparam>\r\n            <param name=\"items\">The items to join.</param>\r\n            <param name=\"separator\">Separator to insert between each item.</param>\r\n            <param name=\"stringConverter\">A function that converts from an item to a string value.</param>\r\n            <returns>A string representation of the collection.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.CommonExtensions.FirstFromEachKey``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})\">\r\n            <summary>\r\n            Gets a dictionary containing the first element from the sequence that has a key specified by the key selector.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of items in the sequence.</typeparam>\r\n            <typeparam name=\"TKey\">The type of the key.</typeparam>\r\n            <param name=\"sequence\">The sequence.</param>\r\n            <param name=\"keySelector\">The key selector.</param>\r\n            <returns>A dictionary.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.BuildableCallRule\">\r\n            <summary>\r\n            Provides the base for rules that can be built using the FakeConfiguration.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRuleWithDescription\">\r\n            <summary>\r\n            Represents a call rule that has a description of the calls the\r\n            rule is applicable to.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallRule\">\r\n            <summary>\r\n            Allows for intercepting call to a fake object and\r\n            act upon them.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallRuleWithDescription.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets if this rule is applicable to the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to validate.</param>\r\n            <returns>True if the rule applies to the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.BuildableCallRule.WriteDescriptionOfValidCall(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of calls the rule is applicable to.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write the description to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Applicator\">\r\n            <summary>\r\n            An action that is called by the Apply method to apply this\r\n            rule to a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.Actions\">\r\n            <summary>\r\n            A collection of actions that should be invoked when the configured\r\n            call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.OutAndRefParametersValues\">\r\n            <summary>\r\n            Values to apply to output and reference variables.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.CallBaseMethod\">\r\n            <summary>\r\n            Gets or sets wether the base mehtod of the fake object call should be\r\n            called when the fake object call is made.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            The number of times the configured rule should be used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Configuration.BuildableCallRule.DescriptionOfValidCall\">\r\n            <summary>\r\n            Gets a description of calls the rule is applicable to.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified\">\r\n            <summary>\r\n            Configuration for any call to a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IWhereConfiguration`1\">\r\n            <summary>\r\n            Provides a way to configure predicates for when a call should be applied.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object that is going to be configured..</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IWhereConfiguration`1.Where(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <param name=\"predicate\">A predicate for a fake object call.</param>\r\n            <param name=\"descriptionWriter\">An action that writes a description of the predicate\r\n            to the output.</param>\r\n            <returns>The configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidArgumentValidationConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value and\r\n            allows the use to specify validations for arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IVoidConfiguration\">\r\n            <summary>\r\n            Provides configuration methods for methods that does not have a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IExceptionThrowerConfiguration\">\r\n            <summary>\r\n            Configuration that lets the developer specify that an exception should be\r\n            thrown by a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IHideObjectMembers\">\r\n            <summary>\r\n            Hides standard Object members to make fluent interfaces\r\n            easier to read. Found in the source of Autofac: http://code.google.com/p/autofac/\r\n            Based on blog post by @kzu here:\r\n            http://www.clariusconsulting.net/blogs/kzu/archive/2008/03/10/58301.aspx\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.ToString\">\r\n            <summary>\r\n            Hides the ToString-method.\r\n            </summary>\r\n            <returns>A string representation of the implementing object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"o\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            <c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IHideObjectMembers.GetType\">\r\n            <summary>\r\n            Gets the type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IExceptionThrowerConfiguration.Throws(System.Exception)\">\r\n            <summary>\r\n            Throws the specified exception when the currently configured\r\n            call gets called.\r\n            </summary>\r\n            <param name=\"exception\">The exception to throw.</param>\r\n            <returns>Configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallbackConfiguration`1\">\r\n            <summary>\r\n            Configuration for callbacks of fake object calls.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallbackConfiguration`1.Invokes(System.Action{FakeItEasy.Core.IFakeObjectCall})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"action\">The action to invoke.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.ICallBaseConfiguration\">\r\n            <summary>\r\n            Configuration that lets you specify that a fake object call should call it's base method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.ICallBaseConfiguration.CallsBaseMethod\">\r\n            <summary>\r\n            When the configured method or methods are called the call\r\n            will be delegated to the base method of the faked method.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.InvalidOperationException\">The fake object is of an abstract type or an interface\r\n            and no base method exists.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            Lets the developer configure output values of out and ref parameters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IOutAndRefParametersConfiguration.AssignsOutAndRefParameters(System.Object[])\">\r\n            <summary>\r\n            Specifies output values for out and ref parameters. Specify the values in the order\r\n            the ref and out parameters has in the configured call, any non out and ref parameters are ignored.\r\n            </summary>\r\n            <param name=\"values\">The values.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAssertConfiguration\">\r\n            <summary>\r\n            Allows the developer to assert on a call that's configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAssertConfiguration.MustHaveHappened(FakeItEasy.Repeated)\">\r\n            <summary>\r\n            Asserts that the configured call has happened the number of times\r\n            constrained by the repeatConstraint parameter.\r\n            </summary>\r\n            <param name=\"repeatConstraint\">A constraint for how many times the call\r\n            must have happened.</param>\r\n            <exception cref=\"T:FakeItEasy.ExpectationException\">The call has not been called a number of times\r\n            that passes the repeat constraint.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IVoidConfiguration.DoesNothing\">\r\n            <summary>\r\n            Configures the specified call to do nothing when called.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Provides configurations to validate arguments of a fake object call.\r\n            </summary>\r\n            <typeparam name=\"TInterface\">The type of interface to return.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IArgumentValidationConfiguration`1.WhenArgumentsMatch(System.Func{FakeItEasy.ArgumentCollection,System.Boolean})\">\r\n            <summary>\r\n            Configures the call to be accepted when the specified predicate returns true.\r\n            </summary>\r\n            <param name=\"argumentsPredicate\">The argument predicate.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IAnyCallConfigurationWithNoReturnTypeSpecified.WithReturnType``1\">\r\n            <summary>\r\n            Matches calls that has the return type specified in the generic type parameter.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The return type of the members to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.Module\">\r\n            <summary>\r\n            Manages registration of a set of components in a DictionaryContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.Module.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the components of this module.\r\n            </summary>\r\n            <param name=\"container\">The container to register components in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingCallRuleFactory\">\r\n            <summary>\r\n            A factory that creates instances of the RecordingCallRuleType.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRecordingCallRuleFactory.Create``1(FakeItEasy.Core.FakeManager,FakeItEasy.Configuration.RecordedCallRule)\">\r\n            <summary>\r\n            Creates the specified fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakeObject\">The fake object the rule belongs to.</param>\r\n            <param name=\"recordedRule\">The rule that's being recorded.</param>\r\n            <returns>A RecordingCallRule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfigurationFactory\">\r\n            <summary>\r\n            A factory responsible for creating start configuration for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfigurationFactory.CreateConfiguration``1(FakeItEasy.Core.FakeManager)\">\r\n            <summary>\r\n            Creates a start configuration for the specified fake object that fakes the\r\n            specified type.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.FakeConfigurationException\">\r\n            <summary>\r\n            An exception that can be thrown when something goes wrong with the configuration\r\n            of a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.FakeConfigurationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IFakeConfigurationManager\">\r\n            <summary>\r\n            Handles the configuration of fake object given an expression specifying\r\n            a call on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedConfiguration\">\r\n            <summary>\r\n            Lets you set up expectations and configure repeat for the configured call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRepeatConfiguration\">\r\n            <summary>\r\n            Provides configuration for method calls that has a return value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IRepeatConfiguration.NumberOfTimes(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times for the configured event.\r\n            </summary>\r\n            <param name=\"numberOfTimesToRepeat\">The number of times to repeat.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IAfterCallSpecifiedWithOutAndRefParametersConfiguration\">\r\n            <summary>\r\n            A combination of the IAfterCallSpecifiedConfiguration and IOutAndRefParametersConfiguration\r\n            interfaces.\r\n            </summary>\r\n        </member>\r\n        <!-- Badly formed XML comment ignored for member \"T:FakeItEasy.Configuration.IAnyCallConfigurationWithReturnTypeSpecified`1\" -->\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueArgumentValidationConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value and allows the use to\r\n            specify validations for arguments.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IReturnValueConfiguration`1\">\r\n            <summary>\r\n            Configures a call that returns a value.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the member.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IReturnValueConfiguration`1.ReturnsLazily(System.Func{FakeItEasy.Core.IFakeObjectCall,`0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfiguration\">\r\n            <summary>\r\n            Configurations for when a configured call is recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IRecordingConfigurationWithArgumentValidation\">\r\n            <summary>\r\n            Provides configuration from VisualBasic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.IStartConfiguration`1\">\r\n            <summary>\r\n            Provides methods for configuring a fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configuration.IStartConfiguration`1.AnyCall\">\r\n            <summary>\r\n            Configures the behavior of the fake object whan a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordedCallRule\">\r\n            <summary>\r\n            A call rule that has been recorded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RecordingCallRule`1\">\r\n            <summary>\r\n            A call rule that \"sits and waits\" for the next call, when\r\n            that call occurs the recorded rule is added for that call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a set of calls and a call matcher for these calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcherAccessor\">\r\n            <summary>\r\n            Provides access to a call matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallMatcherAccessor.Matcher\">\r\n            <summary>\r\n            Gets a call predicate that can be used to check if a fake object call matches\r\n            the specified constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICallCollectionAndCallMatcherAccessor.Calls\">\r\n            <summary>\r\n            A set of calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configuration.RuleBuilder.Factory\">\r\n            <summary>\r\n            Represents a delegate that creates a configuration object from\r\n            a fake object and the rule to build.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object the rule is for.</param>\r\n            <param name=\"ruleBeingBuilt\">The rule that's being built.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICallMatcher\">\r\n            <summary>\r\n            Represents a predicate that matches a fake object call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ICallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a value indicating whether the call matches the predicate.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to match.</param>\r\n            <returns>True if the call matches the predicate.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Configure\">\r\n            <summary>\r\n            Provides configuration of faked objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Configure.Fake``1(``0)\">\r\n            <summary>\r\n            Gets a configuration for the specified faked object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified object is not a faked object.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject parameter was null.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ArgumentInfo\">\r\n            <summary>\r\n            Represents an argument and a dummy value to use for that argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.ArgumentInfo.#ctor(System.Boolean,System.Type,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.ArgumentInfo\"/> class.\r\n            </summary>\r\n            <param name=\"wasSuccessfullyResolved\">A value indicating if the dummy value was successfully resolved.</param>\r\n            <param name=\"typeOfArgument\">The type of argument.</param>\r\n            <param name=\"resolvedValue\">The resolved value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.WasSuccessfullyResolved\">\r\n            <summary>\r\n            Gets a value indicating if a dummy argument value was successfully\r\n            resolved.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.TypeOfArgument\">\r\n            <summary>\r\n            Gets the type of the argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ArgumentInfo.ResolvedValue\">\r\n            <summary>\r\n            Gets the resolved value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallInterceptedEventArgs\">\r\n            <summary>\r\n            Represents an event that happens when a call has been intercepted by a proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallInterceptedEventArgs.#ctor(FakeItEasy.Core.IWritableFakeObjectCall)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.CallInterceptedEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"call\">The call.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallInterceptedEventArgs.Call\">\r\n            <summary>\r\n            Gets the call that was intercepted.\r\n            </summary>\r\n            <value>The call.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.CallRuleMetadata\">\r\n            <summary>\r\n            Keeps track of metadata for interceptions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.CallRuleMetadata.HasNotBeenCalledSpecifiedNumberOfTimes\">\r\n            <summary>\r\n            Gets whether the rule has been called the number of times specified or not.\r\n            </summary>\r\n            <returns>True if the rule has not been called the number of times specified.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.CalledNumberOfTimes\">\r\n            <summary>\r\n            Gets or sets the number of times the rule has been used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.CallRuleMetadata.Rule\">\r\n            <summary>\r\n            Gets or sets the rule this metadata object is tracking.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IArgumentConstraintManager`1\">\r\n            <summary>\r\n            Manages attaching of argument constraints.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of argument to constrain.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IArgumentConstraintManager`1.Matches(System.Func{`0,System.Boolean},System.Action{FakeItEasy.IOutputWriter})\">\r\n            <summary>\r\n            Constrains the argument with a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate that should constrain the argument.</param>\r\n            <param name=\"descriptionWriter\">An action that will be write a description of the constraint.</param>\r\n            <returns>A dummy argument value.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IArgumentConstraintManager`1.Not\">\r\n            <summary>\r\n            Inverts the logic of the matches method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IArgumentConstraint\">\r\n            <summary>\r\n            Validates an argument, checks that it's valid in a specific fake call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.WriteDescription(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a description of the arguemnt constraint to the specified writer.\r\n            </summary>\r\n            <param name=\"writer\">\r\n            The writer.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IArgumentConstraint.IsValid(System.Object)\">\r\n            <summary>\r\n            Gets whether the argument is valid.\r\n            </summary>\r\n            <param name=\"argument\">The argument to validate.</param>\r\n            <returns>True if the argument is valid.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeManagerAccessor\">\r\n            <summary>\r\n            Default implementation of the fake manager attacher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeManagerAccessor\">\r\n            <summary>\r\n            Attaches a fake manager to the proxy so that intercepted\r\n            calls can be configured.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.AttachFakeManagerToProxy(System.Type,System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Attaches a fakemanager to the specified proxy, listening to\r\n            the event raiser.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of the fake object proxy.</param>\r\n            <param name=\"proxy\">The proxy to attach to.</param>\r\n            <param name=\"eventRaiser\">The event raiser to listen to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeManagerAccessor.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake manager associated with the proxy.\r\n            </summary>\r\n            <param name=\"proxy\">The proxy to get the manager from.</param>\r\n            <returns>A fake manager</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ITaggable\">\r\n            <summary>\r\n            Represents an object that can be tagged with another object. When implemented\r\n            by a proxy returned from an <see cref=\"T:FakeItEasy.Creation.IProxyGenerator\"/> FakeItEasy uses the tag\r\n            to store a reference to the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> that handles that proxy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ITaggable.Tag\">\r\n            <summary>\r\n            Gets or sets the tag for the taggable object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeObjectCallFormatter\">\r\n            <summary>\r\n            The default implementation of the IFakeObjectCallFormatter interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCallFormatter\">\r\n            <summary>\r\n            Provides string formatting for fake object calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeObjectCallFormatter.GetDescription(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets a human readable description of the specified\r\n            fake object call.\r\n            </summary>\r\n            <param name=\"call\">The call to get a description for.</param>\r\n            <returns>A description of the call.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DefaultFakeWrapperConfigurer\">\r\n            <summary>\r\n            Handles configuring of fake objects to delegate all their calls to a wrapped instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeWrapperConfigurer\">\r\n            <summary>\r\n            Manages configuration of fake objects to wrap instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DefaultFakeWrapperConfigurer.ConfigureFakeToWrap(System.Object,System.Object,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Configures the specified faked object to wrap the specified instance.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <param name=\"wrappedInstance\">The instance to wrap.</param>\r\n            <param name=\"recorder\">The recorder to use, null if no recording should be made.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\">\r\n            <summary>\r\n            A fake object container where delegates can be registered that are used to\r\n            resolve fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectContainer\">\r\n            <summary>\r\n            A container that can create fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectConfigurator\">\r\n            <summary>\r\n            Handles global configuration of fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectConfigurator.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a dummy object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The dummy object that was created if the method returns true.</param>\r\n            <returns>True if a dummy object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DelegateFakeObjectContainer\"/> class. \r\n            Creates a new instance of the DelegateFakeObjectContainer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake.</param>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DelegateFakeObjectContainer.Register``1(System.Func{``0})\">\r\n            <summary>\r\n            Registers the specified fake delegate.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"fakeDelegate\">The fake delegate.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.DynamicContainer\">\r\n            <summary>\r\n            A IFakeObjectContainer implementation that uses mef to load IFakeDefinitions and\r\n            IFakeConfigurations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.IDummyDefinition},System.Collections.Generic.IEnumerable{FakeItEasy.IFakeConfigurator})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.DynamicContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Creates a fake object of the specified type using the specified arguments if it's\r\n            supported by the container, returns a value indicating if it's supported or not.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of fake object to create.</param>\r\n            <param name=\"fakeObject\">The fake object that was created if the method returns true.</param>\r\n            <returns>True if a fake object can be created.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.DynamicContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeCreationException\">\r\n            <summary>\r\n            An exception that is thrown when there was an error creating a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeCreationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeCreationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager\">\r\n            <summary>\r\n            The central point in the API for proxied fake objects handles interception\r\n            of fake object calls by using a set of rules. User defined rules can be inserted\r\n            by using the AddRule-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.FakeManager\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleFirst(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule to the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddRuleLast(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Adds a call rule last in the list of user rules, meaning it has the lowest priority possible.\r\n            </summary>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.RemoveRule(FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Removes the specified rule for the fake object.\r\n            </summary>\r\n            <param name=\"rule\">The rule to remove.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.AddInterceptionListener(FakeItEasy.Core.IInterceptionListener)\">\r\n            <summary>\r\n            Adds an interception listener to the manager.\r\n            </summary>\r\n            <param name=\"listener\">The listener to add.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeManager.ClearUserRules\">\r\n            <summary>\r\n            Removes any specified user rules.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Object\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.FakeObjectType\">\r\n            <summary>\r\n            Gets the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.Rules\">\r\n            <summary>\r\n            Gets the interceptions that are currently registered with the fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.FakeManager.RecordedCallsInScope\">\r\n            <summary>\r\n            Gets a collection of all the calls made to the fake object within the current scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeManager.Factory\">\r\n            <summary>\r\n            A delegate responsible for creating FakeObject instances.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptedFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object at interception time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IWritableFakeObjectCall\">\r\n            <summary>\r\n            Represents a fake object call that can be edited.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeObjectCall\">\r\n            <summary>\r\n            Represents a call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IFakeObjectCall.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"value\">The return value to set.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method of the faked type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the value of the argument at the specified index in the parameters list.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value of.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IWritableFakeObjectCall.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptedFakeObjectCall.DoNotRecordCall\">\r\n            <summary>\r\n            Sets that the call should not be recorded by the fake manager.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.FakeScope\">\r\n            <summary>\r\n            Represents a scope for fake objects, calls configured within a scope\r\n            are only valid within that scope. Only calls made wihtin a scope\r\n            are accessible from within a scope so for example asserts will only\r\n            assert on those calls done within the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IFakeScope\">\r\n            <summary>\r\n            Provides access to all calls made to fake objects within a scope.\r\n            Scopes calls so that only calls made within the scope are visible.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Create(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope, using the specified\r\n            container as the container for the new scope.\r\n            </summary>\r\n            <param name=\"container\">The container to usee for the new scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.Dispose\">\r\n            <summary>\r\n            Closes the scope.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddInterceptedCall(FakeItEasy.Core.FakeManager,FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Adds an intercepted call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"call\">The call that is intercepted.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.FakeScope.AddRuleFirst(FakeItEasy.Core.FakeManager,FakeItEasy.Core.CallRuleMetadata)\">\r\n            <summary>\r\n            Adds a fake object call to the current scope.\r\n            </summary>\r\n            <param name=\"fakeManager\">The fake object.</param>\r\n            <param name=\"rule\">The rule to add.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.ICompletedFakeObjectCall\">\r\n            <summary>\r\n            Represents a completed call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.ICompletedFakeObjectCall.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IEventRaiserArguments\">\r\n            <summary>\r\n            Used by the event raising rule of fake objects to get the event arguments used in\r\n            a call to Raise.With.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.Sender\">\r\n            <summary>\r\n            The sender of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.IEventRaiserArguments.EventArguments\">\r\n            <summary>\r\n            The event arguments of the event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.IInterceptionListener\">\r\n            <summary>\r\n            Represents a listener for fake object calls, can be plugged into a\r\n            FakeManager instance to listen to all intercepted calls.\r\n            </summary>\r\n            <remarks>The OnBeforeCallIntercepted method will be invoked before the OnBeforeCallIntercepted method of any\r\n            previously added listener. The OnAfterCallIntercepted method will be invoked after the OnAfterCallIntercepted\r\n            method of any previously added listener.</remarks>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnBeforeCallIntercepted(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Called when the interception begins but before any call rules\r\n            has been applied.\r\n            </summary>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.IInterceptionListener.OnAfterCallIntercepted(FakeItEasy.Core.ICompletedFakeObjectCall,FakeItEasy.Core.IFakeObjectCallRule)\">\r\n            <summary>\r\n            Called when the interception has been completed and rules has been\r\n            applied.\r\n            </summary>\r\n            <param name=\"ruleThatWasApplied\">The rule that was applied to the call.</param>\r\n            <param name=\"call\">The intercepted call.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.MethodInfoManager\">\r\n            <summary>\r\n            Handles comparisons of MethodInfos.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.MethodInfoManager.WillInvokeSameMethodOnTarget(System.Type,System.Reflection.MethodInfo,System.Reflection.MethodInfo)\">\r\n            <summary>\r\n            Gets a value indicating if the two method infos would invoke the same method\r\n            if invoked on an instance of the target type.\r\n            </summary>\r\n            <param name=\"target\">The type of target for invokation.</param>\r\n            <param name=\"first\">The first MethodInfo.</param>\r\n            <param name=\"second\">The second MethodInfo.</param>\r\n            <returns>True if the same method would be invoked.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.NullFakeObjectContainer\">\r\n            <summary>\r\n            A null implementation for the IFakeObjectContainer interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.TryCreateDummyObject(System.Type,System.Object@)\">\r\n            <summary>\r\n            Always returns false and sets the fakeObject to null.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy object to create.</param>\r\n            <param name=\"fakeObject\">Output variable for the fake object that will always be set to null.</param>\r\n            <returns>Always return false.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.NullFakeObjectContainer.ConfigureFake(System.Type,System.Object)\">\r\n            <summary>\r\n            Applies base configuration to a fake object.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type the fake object represents.</param>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.#ctor(System.Collections.Generic.IEnumerable{FakeItEasy.Core.IFakeObjectCall},FakeItEasy.Core.CallWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.OrderedFakeAsserter\"/> class.\r\n            </summary>\r\n            <param name=\"calls\">The calls.</param>\r\n            <param name=\"callWriter\">The call writer.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.OrderedFakeAsserter.AssertWasCalled(System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean},System.String,System.Func{System.Int32,System.Boolean},System.String)\">\r\n            <summary>\r\n            Asserts the was called.\r\n            </summary>\r\n            <param name=\"callPredicate\">The call predicate.</param>\r\n            <param name=\"callDescription\">The call description.</param>\r\n            <param name=\"repeatPredicate\">The repeat predicate.</param>\r\n            <param name=\"repeatDescription\">The repeat description.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Core.WrappedObjectRule\">\r\n            <summary>\r\n            A call rule that applies to any call and just delegates the\r\n            call to the wrapped object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Core.WrappedObjectRule\"/> class. \r\n            Creates a new instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">\r\n            The object to wrap.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Core.WrappedObjectRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Core.WrappedObjectRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IProxyGenerator\">\r\n            <summary>\r\n            An interface to be implemented by classes that can generate proxies for FakeItEasy.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.GenerateProxy(System.Type,System.Collections.Generic.IEnumerable{System.Type},System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Generates a proxy of the specifed type and returns a result object containing information\r\n            about the success of the generation and the proxy if it was generated.\r\n            </summary>\r\n            <param name=\"typeOfProxy\">The type of proxy to generate.</param>\r\n            <param name=\"additionalInterfacesToImplement\">Interfaces to be implemented by the proxy.</param>\r\n            <param name=\"argumentsForConstructor\">Arguments to pass to the constructor of the type in <paramref name=\"typeOfProxy\" />.</param>\r\n            <returns>A result containging the generated proxy.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IProxyGenerator.MethodCanBeInterceptedOnInstance(System.Reflection.MethodInfo,System.Object,System.String@)\">\r\n            <summary>\r\n            Gets a value indicating if the specified member can be intercepted by the proxy generator.\r\n            </summary>\r\n            <param name=\"method\">The member to test.</param>\r\n            <param name=\"callTarget\">The instance the method will be called on.</param>\r\n            <param name=\"failReason\">The reason the method can not be intercepted.</param>\r\n            <returns>True if the member can be intercepted.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ICallInterceptedEventRaiser\">\r\n            <summary>\r\n            An object that raises an event every time a call to a proxy has been intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:FakeItEasy.Creation.ICallInterceptedEventRaiser.CallWasIntercepted\">\r\n            <summary>\r\n            Raised when a call is intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\">\r\n            <summary>\r\n            An adapter that adapts an <see cref=\"T:Castle.DynamicProxy.IInvocation\"/> to a <see cref=\"T:FakeItEasy.Core.IFakeObjectCall\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.#ctor(Castle.DynamicProxy.IInvocation)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter\"/> class.\r\n            </summary>\r\n            <param name=\"invocation\">The invocation.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.AsReadOnly\">\r\n            <summary>\r\n            Freezes the call so that it can no longer be modified.\r\n            </summary>\r\n            <returns>A completed fake object call.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.CallBaseMethod\">\r\n            <summary>\r\n            Calls the base method, should not be used with interface types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetArgumentValue(System.Int32,System.Object)\">\r\n            <summary>\r\n            Sets the specified value to the argument at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The index of the argument to set the value to.</param>\r\n            <param name=\"value\">The value to set to the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.SetReturnValue(System.Object)\">\r\n            <summary>\r\n            Sets the return value of the call.\r\n            </summary>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ToString\">\r\n            <summary>\r\n            Returns a description of the call.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Description\">\r\n            <summary>\r\n            A human readable description of the call.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.ReturnValue\">\r\n            <summary>\r\n            The value set to be returned from the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Method\">\r\n            <summary>\r\n            The method that's called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.Arguments\">\r\n            <summary>\r\n            The arguments used in the call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.CastleInvocationCallAdapter.FakedObject\">\r\n            <summary>\r\n            The faked object the call is performed on.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorDoesNotMatchAnyConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matches the passed arguments for constructor..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ArgumentsForConstructorOnInterfaceTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor specified for interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsSealedTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy &quot;{0}&quot; is sealed..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyIsValueTypeMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The type of proxy must be an interface or a class but it was {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.CastleDynamicProxy.DynamicProxyResources.ProxyTypeWithNoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to No default constructor was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeAndDummyManager\">\r\n            <summary>\r\n            The default implementation of the IFakeAndDummyManager interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeAndDummyManager\">\r\n            <summary>\r\n            Handles the creation of fake and dummy objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateDummy(System.Type)\">\r\n            <summary>\r\n            Creates a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type and\r\n            the current IFakeObjectContainer does not contain the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.CreateFake(System.Type,FakeItEasy.Creation.FakeOptions)\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake object to generate.</param>\r\n            <param name=\"options\">Options for building the fake object.</param>\r\n            <returns>A fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">The current IProxyGenerator is not able to generate a fake of the specified type.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateDummy(System.Type,System.Object@)\">\r\n            <summary>\r\n            Tries to create a dummy of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfDummy\">The type of dummy to create.</param>\r\n            <param name=\"result\">Outputs the result dummy when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeAndDummyManager.TryCreateFake(System.Type,FakeItEasy.Creation.FakeOptions,System.Object@)\">\r\n            <summary>\r\n            Tries to create a fake object of the specified type.\r\n            </summary>\r\n            <param name=\"typeOfFake\">The type of fake to create.</param>\r\n            <param name=\"options\">Options for the creation of the fake.</param>\r\n            <param name=\"result\">The created fake object when creation is successful.</param>\r\n            <returns>A value indicating whether the creation was successful.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\">\r\n            <summary>\r\n            Default implementation ofthe IFakeCreator-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeCreatorFacade\">\r\n            <summary>\r\n            A facade used by the public api for testability.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>A collection of fake objects of the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.#ctor(FakeItEasy.Creation.IFakeAndDummyManager)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DefaultFakeCreatorFacade\"/> class.\r\n            </summary>\r\n            <param name=\"fakeAndDummyManager\">The fake and dummy manager.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateFake``1(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{``0}})\">\r\n            <summary>\r\n            Creates a fake object of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake to create.</typeparam>\r\n            <param name=\"options\">Options for the created fake object.</param>\r\n            <returns>The created fake object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CollectionOfFake``1(System.Int32)\">\r\n            <summary>\r\n            Creates a collection of fakes of the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes to create.</typeparam>\r\n            <param name=\"numberOfFakes\">The number of fakes in the collection.</param>\r\n            <returns>\r\n            A collection of fake objects of the specified type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DefaultFakeCreatorFacade.CreateDummy``1\">\r\n            <summary>\r\n            Creates a dummy object, this can be a fake object or an object resolved\r\n            from the current IFakeObjectContainer.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of dummy to create.</typeparam>\r\n            <returns>The created dummy.</returns>\r\n            <exception cref=\"T:FakeItEasy.Core.FakeCreationException\">Was unable to generate the fake in the current configuration and\r\n            no dummy was registered in the container for the specifed type..</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1\">\r\n            <summary>\r\n            Provides options for fake wrappers.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.IFakeOptionsBuilder`1\">\r\n            <summary>\r\n            Provides options for generating fake object.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object generated.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Collections.Generic.IEnumerable{System.Object})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class.\r\n            </summary>\r\n            <param name=\"argumentsForConstructor\">The arguments to pass to the consturctor of the faked class.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.WithArgumentsForConstructor(System.Linq.Expressions.Expression{System.Func{`0}})\">\r\n            <summary>\r\n            Specifies arguments for the constructor of the faked class by giving an expression with the call to\r\n            the desired constructor using the arguments to be passed to the constructor.\r\n            </summary>\r\n            <param name=\"constructorCall\">The constructor call to use when creating a class proxy.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Wrapping(`0)\">\r\n            <summary>\r\n            Specifies that the fake should delegate calls to the specified instance.\r\n            </summary>\r\n            <param name=\"wrappedInstance\">The object to delegate calls to.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.Implements(System.Type)\">\r\n            <summary>\r\n            Sets up the fake to implement the specified interface in addition to the\r\n            originally faked class.\r\n            </summary>\r\n            <param name=\"interfaceType\">The type of interface to implement.</param>\r\n            <returns>Options object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The specified type is not an interface.</exception>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified type is null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilder`1.OnFakeCreated(System.Action{`0})\">\r\n            <summary>\r\n            Specifies an action that should be run over the fake object\r\n            once it's created.\r\n            </summary>\r\n            <param name=\"action\">An action to perform.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.IFakeOptionsBuilderForWrappers`1.RecordedBy(FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Specifies a fake recorder to use.\r\n            </summary>\r\n            <param name=\"recorder\">The recorder to use.</param>\r\n            <returns>Options object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.DummyValueCreationSession.#ctor(FakeItEasy.Core.IFakeObjectContainer,FakeItEasy.Creation.IFakeObjectCreator)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.DummyValueCreationSession\"/> class.\r\n            </summary>\r\n            <param name=\"container\">The container.</param>\r\n            <param name=\"fakeObjectCreator\">The fake object creator.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Creation.ProxyGeneratorResult\">\r\n            <summary>\r\n            Contains the result of a call to TryCreateProxy of IProxyGenerator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a failed proxy\r\n            generation attempt.\r\n            </summary>\r\n            <param name=\"reasonForFailure\">\r\n            The reason the proxy generation failed.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Creation.ProxyGeneratorResult.#ctor(System.Object,FakeItEasy.Creation.ICallInterceptedEventRaiser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Creation.ProxyGeneratorResult\"/> class. \r\n            Creates a new instance representing a successful proxy\r\n            generation.\r\n            </summary>\r\n            <param name=\"generatedProxy\">\r\n            The proxy that was generated.\r\n            </param>\r\n            <param name=\"callInterceptedEventRaiser\">\r\n            An event raiser that raises\r\n            events when calls are intercepted to the proxy.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ProxyWasSuccessfullyGenerated\">\r\n            <summary>\r\n            Gets a value indicating if the proxy was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.GeneratedProxy\">\r\n            <summary>\r\n            Gets the generated proxy when it was successfully created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.CallInterceptedEventRaiser\">\r\n            <summary>\r\n            Gets the event raiser that raises events when calls to the proxy are\r\n            intercepted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Creation.ProxyGeneratorResult.ReasonForFailure\">\r\n            <summary>\r\n            Gets the reason for failure when the generation was not successful.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IOutputWriter\">\r\n            <summary>\r\n            Represents a text writer that writes to the output.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Write(System.String)\">\r\n            <summary>\r\n            Writes the specified value to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chaining.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.WriteArgumentValue(System.Object)\">\r\n            <summary>\r\n            Formats the specified argument value as a string and writes\r\n            it to the output.\r\n            </summary>\r\n            <param name=\"value\">The value to write.</param>\r\n            <returns>The writer for method chainging.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IOutputWriter.Indent\">\r\n            <summary>\r\n            Indents the writer.\r\n            </summary>\r\n            <returns>A disposable that will unindent the writer when disposed.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.DummyDefinition`1\">\r\n            <summary>\r\n            Represents a definition of how a fake object of the type T should\r\n            be created.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IDummyDefinition\">\r\n            <summary>\r\n            Represents a definition of how dummies of the specified type should be created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IDummyDefinition.CreateDummy\">\r\n            <summary>\r\n            Creates the fake.\r\n            </summary>\r\n            <returns>The fake object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IDummyDefinition.ForType\">\r\n            <summary>\r\n            The type of fake object the definition is for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.FakeItEasy#IDummyDefinition#CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.DummyDefinition`1.CreateDummy\">\r\n            <summary>\r\n            Creates the dummy.\r\n            </summary>\r\n            <returns>The dummy object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.DummyDefinition`1.ForType\">\r\n            <summary>\r\n            Gets the type the definition is for.\r\n            </summary>\r\n            <value>For type.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExceptionMessages\">\r\n            <summary>\r\n              A strongly-typed resource class, for looking up localized strings, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ResourceManager\">\r\n            <summary>\r\n              Returns the cached ResourceManager instance used by this class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.Culture\">\r\n            <summary>\r\n              Overrides the current thread's CurrentUICulture property for all\r\n              resource lookups using this strongly typed resource class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ApplicatorNotSetExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The Apply method of the ExpressionInterceptor may no be called before the Applicator property has been set..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentNameDoesNotExist\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified argument name does not exist in the ArgumentList..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentsForConstructorOnInterfaceType\">\r\n            <summary>\r\n              Looks up a localized string similar to Arguments for constructor was specified when generating proxy of interface type..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ArgumentValidationDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to An argument validation was not configured correctly..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooFewTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too few times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CalledTooManyTimesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The method &apos;{0}&apos; was called too many times, expected #{1} times but was called #{2} times..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CanNotGenerateFakeMessage\">\r\n             <summary>\r\n               Looks up a localized string similar to Can not create fake of the type &apos;{0}&apos;, it&apos;s not registered in the current container and the current IProxyGenerator can not generate the fake.\r\n            \r\n            The following constructors failed:\r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.ConfiguringNonFakeObjectExceptionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Error when accessing FakeObject, the specified argument is of the type &apos;{0}&apos; which is not faked..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.CreatingExpressionCallMatcherWithNonMethodOrPropertyExpression\">\r\n            <summary>\r\n              Looks up a localized string similar to An ExpressionCallMatcher can only be created for expressions that represents a method call or a property getter..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateFakeWithArgumentsForConstructorPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to The current proxy generator failed to create a proxy with the specified arguments for the constructor:\r\n            \r\n              Reason for failure:\r\n                - {0}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FailedToGenerateProxyPattern\">\r\n             <summary>\r\n               Looks up a localized string similar to FakeItEasy failed to create fake object of type &quot;{0}&quot;.\r\n            \r\n            1. The type is not registered in the current IFakeObjectContainer.\r\n            2. The current IProxyGenerator failed to generate a proxy for the following reason:\r\n            \r\n            {1}.\r\n             </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakeCreationExceptionDefaultMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Unable to create fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.FakingNonAbstractClassWithArgumentsForConstructor\">\r\n            <summary>\r\n              Looks up a localized string similar to Only abstract classes can be faked using the A.Fake-method that takes an enumerable of objects as arguments for constructor, use the overload that takes an expression instead..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberAccessorNotCorrectExpressionType\">\r\n            <summary>\r\n              Looks up a localized string similar to The member accessor expression must be a lambda expression with a MethodCallExpression or MemberAccessExpression as its body..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MemberCanNotBeIntercepted\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified method can not be configured since it can not be intercepted by the current IProxyGenerator..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.MethodMissmatchWhenPlayingBackRecording\">\r\n            <summary>\r\n              Looks up a localized string similar to The method of the call did not match the method of the recorded call, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoConstructorMatchingArguments\">\r\n            <summary>\r\n              Looks up a localized string similar to No constructor matching the specified arguments was found on the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoDefaultConstructorMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Can not generate fake object for the class since no default constructor was found, specify a constructor call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NoMoreRecordedCalls\">\r\n            <summary>\r\n              Looks up a localized string similar to All the recorded calls has been applied, the recorded sequence is no longer valid..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NonConstructorExpressionMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to Only expression of the type ExpressionType.New (constructor calls) are accepted..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NowCalledDirectly\">\r\n            <summary>\r\n              Looks up a localized string similar to The Now-method on the event raise is not meant to be called directly, only use it to register to an event on a fake object that you want to be raised..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.NumberOfOutAndRefParametersDoesNotMatchCall\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of values for out and ref parameters specified does not match the number of out and ref parameters in the call..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.OrderedAssertionsAlreadyOpen\">\r\n            <summary>\r\n              Looks up a localized string similar to A scope for ordered assertions is already opened, close that scope before opening another one..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.SpecifiedCallIsNotToFakedObject\">\r\n            <summary>\r\n              Looks up a localized string similar to The specified call is not made on a fake object..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.TypeCanNotBeProxied\">\r\n            <summary>\r\n              Looks up a localized string similar to The current fake proxy generator can not create proxies of the type {0}..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.UnableToCreateDummyPattern\">\r\n            <summary>\r\n              Looks up a localized string similar to FakeItEasy was unable to create dummy of type &quot;{0}&quot;, register it in the current IFakeObjectContainer to enable this..\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WasCalledWrongNumberOfTimes\">\r\n            <summary>\r\n              Looks up a localized string similar to Expected to find call {0} the number of times specified by the predicate &apos;{1}&apos; but found it {2} times among the calls:.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.ExceptionMessages.WrongNumberOfArgumentNamesMessage\">\r\n            <summary>\r\n              Looks up a localized string similar to The number of argument names does not match the number of arguments..\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExpectationException\">\r\n            <summary>\r\n            An exception thrown when an expection is not met (when asserting on fake object calls).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExpectationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.ExpectationException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ICallExpressionParser\">\r\n            <summary>\r\n            Represents a class that can parse a lambda expression\r\n            that represents a method or property call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ICallExpressionParser.Parse(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Parses the specified expression.\r\n            </summary>\r\n            <param name=\"callExpression\">The expression to parse.</param>\r\n            <returns>The parsed expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\">\r\n            <summary>\r\n            Handles the matching of fake object calls to expressions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.#ctor(System.Linq.Expressions.LambdaExpression,FakeItEasy.Expressions.ExpressionArgumentConstraintFactory,FakeItEasy.Core.MethodInfoManager,FakeItEasy.Expressions.ICallExpressionParser)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallMatcher\"/> class.\r\n            </summary>\r\n            <param name=\"callSpecification\">The call specification.</param>\r\n            <param name=\"constraintFactory\">The constraint factory.</param>\r\n            <param name=\"callExpressionParser\">A parser to use to parse call expressions.</param>\r\n            <param name=\"methodInfoManager\">The method infor manager to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.Matches(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Matcheses the specified call against the expression.\r\n            </summary>\r\n            <param name=\"call\">The call to match.</param>\r\n            <returns>True if the call is matched by the expression.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallMatcher.ToString\">\r\n            <summary>\r\n            Gets a description of the call.\r\n            </summary>\r\n            <returns>Description of the call.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Expressions.ExpressionCallMatcher.DescriptionOfMatchingCall\">\r\n            <summary>\r\n            Gets a human readable description of calls that will be matched by this\r\n            matcher.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule\">\r\n            <summary>\r\n            An implementation of the <see cref=\"T:FakeItEasy.Core.IFakeObjectCallRule\"/> interface that uses\r\n            expressions for evaluating if the rule is applicable to a specific call.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.#ctor(FakeItEasy.Expressions.ExpressionCallMatcher)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Expressions.ExpressionCallRule\"/> class.\r\n            </summary>\r\n            <param name=\"expressionMatcher\">The expression matcher to use.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionCallRule.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionCallRule.Factory\">\r\n            <summary>\r\n            Handles the instantiation of ExpressionCallRule instance.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call.</param>\r\n            <returns>A rule instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.ExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Expressions.IExpressionParser\">\r\n            <summary>\r\n            Manages breaking call specification expression into their various parts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.IExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>The FakeManager instance that manages the faked object the call is made on.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Expressions.ExpressionParser.GetFakeManagerCallIsMadeOn(System.Linq.Expressions.LambdaExpression)\">\r\n            <summary>\r\n            Gets the fake object an expression is called on.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call expression.</param>\r\n            <returns>A FakeObject.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakeObjectCall is null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The specified expression is not an expression where a call is made to a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax\">\r\n            <summary>\r\n            Provides extension methods for configuring and asserting on faked objects\r\n            without going through the static methods of the Fake-class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``2(``0,System.Linq.Expressions.Expression{System.Func{``0,``1}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of the return value of the member.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.CallsTo``1(``0,System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call that matches the specified\r\n            call happens.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to configure.</param>\r\n            <typeparam name=\"TFake\">The type of fake object to configure.</typeparam>\r\n            <param name=\"callSpecification\">An expression that specifies the calls to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Full.FullExtensionSyntax.AnyCall``1(``0)\">\r\n            <summary>\r\n            Configures the behavior of the fake object when a call is made to any method on the\r\n            object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake.</typeparam>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.ExtensionSyntax.Syntax\">\r\n            <summary>\r\n            Provides an extension method for configuring fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.ExtensionSyntax.Syntax.Configure``1(``0)\">\r\n            <summary>\r\n            Gets an object that provides a fluent interface syntax for configuring\r\n            the fake object.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the fake object.</typeparam>\r\n            <param name=\"fakedObject\">The fake object to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The fakedObject was null.</exception>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake\">\r\n            <summary>\r\n            Provides static methods for accessing fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetFakeManager(System.Object)\">\r\n            <summary>\r\n            Gets the fake object that manages the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to get the manager object for.</param>\r\n            <returns>The fake object manager.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.CreateScope(FakeItEasy.Core.IFakeObjectContainer)\">\r\n            <summary>\r\n            Creates a new scope and sets it as the current scope. When inside a scope the\r\n            getting the calls made to a fake will return only the calls within that scope and when\r\n            asserting that calls were made, the calls must have been made within that scope.\r\n            </summary>\r\n            <param name=\"container\">The container to use within the specified scope.</param>\r\n            <returns>The created scope.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are equal.\r\n            </summary>\r\n            <param name=\"objA\">The first object to compare.</param>\r\n            <param name=\"objB\">The second object to compare.</param>\r\n            <returns>True if the two objects are equal.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets a value indicating if the two objects are the same reference.\r\n            </summary>\r\n            <param name=\"objA\">The obj A.</param>\r\n            <param name=\"objB\">The obj B.</param>\r\n            <returns>True if the objects are the same reference.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.GetCalls(System.Object)\">\r\n            <summary>\r\n            Gets all the calls made to the specified fake object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object.</param>\r\n            <returns>A collection containing the calls to the object.</returns>\r\n            <exception cref=\"T:System.ArgumentException\">The object passed in is not a faked object.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.ClearConfiguration(System.Object)\">\r\n            <summary>\r\n            Cleares the configuration of the faked object.\r\n            </summary>\r\n            <param name=\"fakedObject\">The faked object to clear the configuration of.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake.InitializeFixture(System.Object)\">\r\n            <summary>\r\n            Sets a new fake to each property or field that is tagged with the FakeAttribute in the specified\r\n            fixture.\r\n            </summary>\r\n            <param name=\"fixture\">The object to initialize.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Fake`1\">\r\n            <summary>\r\n            Represents a fake object that provides an api for configuring a faked object, exposed by the\r\n            FakedObject-property.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the faked object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.#ctor(System.Action{FakeItEasy.Creation.IFakeOptionsBuilder{`0}})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.Fake`1\"/> class. \r\n            Creates a new fake object using the specified options.\r\n            </summary>\r\n            <param name=\"options\">\r\n            Options used to create the fake object.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo(System.Linq.Expressions.Expression{System.Action{`0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.CallsTo``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})\">\r\n            <summary>\r\n            Configures calls to the specified member.\r\n            </summary>\r\n            <typeparam name=\"TMember\">The type of value the member returns.</typeparam>\r\n            <param name=\"callSpecification\">An expression specifying the call to configure.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Fake`1.AnyCall\">\r\n            <summary>\r\n            Configures any call to the fake object.\r\n            </summary>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.FakedObject\">\r\n            <summary>\r\n            Gets the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Fake`1.RecordedCalls\">\r\n            <summary>\r\n            Gets all calls made to the faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized through the\r\n            Fake.Initialize-method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeConfigurator`1\">\r\n            <summary>\r\n            Provides the base implementation for the IFakeConfigurator-interface.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fakes the configurator can configure.</typeparam>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFakeConfigurator\">\r\n            <summary>\r\n            Provides configurations for fake objects of a specific type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFakeConfigurator.ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IFakeConfigurator.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.ConfigureFake(`0)\">\r\n            <summary>\r\n            Configures the fake.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.FakeItEasy#IFakeConfigurator#ConfigureFake(System.Object)\">\r\n            <summary>\r\n            Applies the configuration for the specified fake object.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object to configure.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeConfigurator`1.AssertThatFakeIsOfCorrectType(System.Object)\">\r\n            <summary>\r\n            Asserts the type of the that fake is of correct.\r\n            </summary>\r\n            <param name=\"fakeObject\">The fake object.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.FakeConfigurator`1.ForType\">\r\n            <summary>\r\n            The type the instance provides configuration for.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.FakeExtensions\">\r\n            <summary>\r\n            Provides extension methods for fake objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Once(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(1) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 1 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Twice(FakeItEasy.Configuration.IRepeatConfiguration)\">\r\n            <summary>\r\n            Specifies NumberOfTimes(2) to the IRepeatConfiguration{TFake}.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to set repeat 2 to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WithAnyArguments``1(FakeItEasy.Configuration.IArgumentValidationConfiguration{``0})\">\r\n            <summary>\r\n            Specifies that a call to the configured call should be applied no matter what arguments\r\n            are used in the call to the faked object.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration.</param>\r\n            <returns>A configuration object</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Matching``1(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall},System.Linq.Expressions.Expression{System.Action{``0}})\">\r\n            <summary>\r\n            Filters to contain only the calls that matches the call specification.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of fake the call is made on.</typeparam>\r\n            <param name=\"calls\">The calls to filter.</param>\r\n            <param name=\"callSpecification\">The call to match on.</param>\r\n            <returns>A collection of the calls that matches the call specification.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified call must have happened once or more.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.MustNotHaveHappened(FakeItEasy.Configuration.IAssertConfiguration)\">\r\n            <summary>\r\n            Asserts that the specified has not happened.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration to assert on.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsNextFromSequence``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0[])\">\r\n            <summary>\r\n            Configures the call to return the next value from the specified sequence each time it's called. Null will\r\n            be returned when all the values in the sequence has been returned.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The type of return value.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The call configuration to extend.\r\n            </param>\r\n            <param name=\"values\">\r\n            The values to return in sequence.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Returns``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},``0)\">\r\n            <summary>\r\n            Specifies the value to return when the configured call is made.\r\n            </summary>\r\n            <param name=\"value\">The value to return.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``1(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``2(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``3(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``4(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.ReturnsLazily``5(FakeItEasy.Configuration.IReturnValueConfiguration{``0},System.Func{``1,``2,``3,``4,``0})\">\r\n            <summary>\r\n            Specifies a function used to produce a return value when the configured call is made.\r\n            The function will be called each time this call is made and can return different values\r\n            each time.\r\n            </summary>\r\n            <param name=\"valueProducer\">A function that produces the return value.</param>\r\n            <param name=\"configuration\">The configuration to extend.</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TReturnType\">The type of the return value.</typeparam>\r\n            <returns>A configuration object.</returns>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"valueProducer\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Write``1(System.Collections.Generic.IEnumerable{``0},FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes the calls in the collection to the specified text writer.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n            <param name=\"writer\">The writer to write the calls to.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.WriteToConsole``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Writes all calls in the collection to the console.\r\n            </summary>\r\n            <param name=\"calls\">The calls to write.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.Int32)\">\r\n            <summary>\r\n            Gets the argument at the specified index in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentIndex\">The index of the argument.</param>\r\n            <returns>The value of the argument with the specified index.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.GetArgument``1(FakeItEasy.Core.IFakeObjectCall,System.String)\">\r\n            <summary>\r\n            Gets the argument with the specified name in the arguments collection\r\n            for the call.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the argument to get.</typeparam>\r\n            <param name=\"call\">The call to get the argument from.</param>\r\n            <param name=\"argumentName\">The name of the argument.</param>\r\n            <returns>The value of the argument with the specified name.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Strict``1(FakeItEasy.Creation.IFakeOptionsBuilder{``0})\">\r\n            <summary>\r\n            Makes the fake strict, this means that any call to the fake\r\n            that has not been explicitly configured will throw an exception.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of fake object.</typeparam>\r\n            <param name=\"options\">The configuration.</param>\r\n            <returns>A configuration object.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Where``1(FakeItEasy.Configuration.IWhereConfiguration{``0},System.Linq.Expressions.Expression{System.Func{FakeItEasy.Core.IFakeObjectCall,System.Boolean}})\">\r\n            <summary>\r\n            Applies a predicate to constrain which calls will be considered for interception.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The return type of the where method.\r\n            </typeparam>\r\n            <param name=\"configuration\">\r\n            The configuration object to extend.\r\n            </param>\r\n            <param name=\"predicate\">\r\n            A predicate for a fake object call.\r\n            </param>\r\n            to the output.\r\n            <returns>\r\n            The configuration object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``1(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action)\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made. This overload can also be used to fake calls with arguments when they don't need to be accessed.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action\"/> to invoke</param>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``2(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`1\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``3(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`2\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``4(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`3\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.FakeExtensions.Invokes``5(FakeItEasy.Configuration.ICallbackConfiguration{``0},System.Action{``1,``2,``3,``4})\">\r\n            <summary>\r\n            Executes the specified action when a matching call is being made.\r\n            </summary>\r\n            <param name=\"configuration\">The configuration that is extended.</param>\r\n            <param name=\"actionToInvoke\">The <see cref=\"T:System.Action`4\"/> to invoke</param>\r\n            <typeparam name=\"T1\">Type of the first argument of the faked method call</typeparam>\r\n            <typeparam name=\"T2\">Type of the second argument of the faked method call</typeparam>\r\n            <typeparam name=\"T3\">Type of the third argument of the faked method call</typeparam>\r\n            <typeparam name=\"T4\">Type of the fourth argument of the faked method call</typeparam>\r\n            <typeparam name=\"TFake\">The type of fake object.</typeparam>\r\n            <exception cref=\"T:FakeItEasy.Configuration.FakeConfigurationException\"> when the signatures of the faked method and the <paramref name=\"actionToInvoke\"/> do not match</exception>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Guard\">\r\n            <summary>\r\n            Provides methods for guarding method arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNull(System.Object,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is null.\r\n            </summary>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The specified argument was null.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.IsInRange``1(``0,``0,``0,System.String)\">\r\n            <summary>\r\n            Throws an exception if the specified argument is not in the given range.\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n            <param name=\"argument\">The argument.</param>\r\n            <param name=\"lowerBound\">The lower bound.</param>\r\n            <param name=\"upperBound\">The upper bound.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">The specified argument was not in the given range.</exception>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Guard.AgainstNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Throws an ArgumentNullException if the specified string is null or empty.\r\n            </summary>\r\n            <param name=\"value\">The value to guard.</param>\r\n            <param name=\"argumentName\">Name of the argument.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Helpers.GetValueProducedByExpression(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Gets the value produced by the specified expression when compiled and invoked.\r\n            </summary>\r\n            <param name=\"expression\">The expression to get the value from.</param>\r\n            <returns>The value produced by the expression.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IFileSystem\">\r\n            <summary>\r\n            Provides access to the file system.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Open(System.String,System.IO.FileMode)\">\r\n            <summary>\r\n            Opens the specified file in the specified mode.\r\n            </summary>\r\n            <param name=\"fileName\">The full path and name of the file to open.</param>\r\n            <param name=\"mode\">The mode to open the file in.</param>\r\n            <returns>A stream for reading and writing the file.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.FileExists(System.String)\">\r\n            <summary>\r\n            Gets a value indicating if the specified file exists.\r\n            </summary>\r\n            <param name=\"fileName\">The path and name of the file to check.</param>\r\n            <returns>True if the file exists.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IFileSystem.Create(System.String)\">\r\n            <summary>\r\n            Creates a file with the specified name.\r\n            </summary>\r\n            <param name=\"fileName\">The name of the file to create.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IoC.DictionaryContainer\">\r\n            <summary>\r\n            A simple implementation of an IoC container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:FakeItEasy.IoC.DictionaryContainer.registeredServices\">\r\n            <summary>\r\n            The dictionary that stores the registered services.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.IoC.DictionaryContainer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Resolve(System.Type)\">\r\n            <summary>\r\n            Resolves an instance of the specified component type.\r\n            </summary>\r\n            <param name=\"componentType\">Type of the component.</param>\r\n            <returns>An instance of the component type.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.Register``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IoC.DictionaryContainer.RegisterSingleton``1(System.Func{FakeItEasy.IoC.DictionaryContainer,``0})\">\r\n            <summary>\r\n            Registers the specified resolver as a singleton.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of component to register.</typeparam>\r\n            <param name=\"resolver\">The resolver.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.IRepeatSpecification\">\r\n            <summary>\r\n            Provides properties and methods to specify repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.IRepeatSpecification.Times(System.Int32)\">\r\n            <summary>\r\n            Specifies the number of times as repeat.\r\n            </summary>\r\n            <param name=\"numberOfTimes\">The number of times expected.</param>\r\n            <returns>A Repeated instance.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Once\">\r\n            <summary>\r\n            Specifies once as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.IRepeatSpecification.Twice\">\r\n            <summary>\r\n            Specifies twice as the repeat.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Logger.Debug(System.Func{System.String})\">\r\n            <summary>\r\n            Writes the specified message to the logger.\r\n            </summary>\r\n            <param name=\"message\">The message to write.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.NextCall\">\r\n            <summary>\r\n            Lets you specify options for the next call to a fake object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.NextCall.To``1(``0)\">\r\n            <summary>\r\n            Specifies options for the next call to the specified fake object. The next call will\r\n            be recorded as a call configuration.\r\n            </summary>\r\n            <typeparam name=\"TFake\">The type of the faked object.</typeparam>\r\n            <param name=\"fake\">The faked object to configure.</param>\r\n            <returns>A call configuration object.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OrderedAssertion\">\r\n            <summary>\r\n            Provides functionality for making ordered assertions on fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OrderedAssertion.OrderedAssertions(System.Collections.Generic.IEnumerable{FakeItEasy.Core.ICompletedFakeObjectCall})\">\r\n            <summary>\r\n            Creates a scope that changes the behavior on asserts so that all asserts within\r\n            the scope must be to calls in the specified collection of calls. Calls must have happened\r\n            in the order that the asserts are specified or the asserts will fail.\r\n            </summary>\r\n            <param name=\"calls\">The calls to assert among.</param>\r\n            <returns>A disposable used to close the scope.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.OutputWriter\">\r\n            <summary>\r\n            Provides static methods for the IOutputWriter-interface.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.WriteLine(FakeItEasy.IOutputWriter)\">\r\n            <summary>\r\n            Writes a new line to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.String,System.Object[])\">\r\n            <summary>\r\n            Writes the format string to the writer.\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"format\">The format string to write.</param>\r\n            <param name=\"args\">Replacements for the format string.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.OutputWriter.Write(FakeItEasy.IOutputWriter,System.Object)\">\r\n            <summary>\r\n            Writes the specified object to the writer (using the ToString-method of the object).\r\n            </summary>\r\n            <param name=\"writer\">The writer to write to.</param>\r\n            <param name=\"value\">The value to write to the writer.</param>\r\n            <returns>The writer.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise\">\r\n            <summary>\r\n            Allows the developer to raise an event on a faked object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(System.Object,``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>A Raise(TEventArgs)-object that exposes the eventhandler to attatch.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.With``1(``0)\">\r\n            <summary>\r\n            Raises an event on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event arguments.</typeparam>\r\n            <param name=\"e\">The <see cref=\"T:System.EventArgs\"/> instance containing the event data.</param>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise.WithEmpty\">\r\n            <summary>\r\n            Raises an event with empty event arguments on a faked object by attatching the event handler produced by the method\r\n            to the event that is to be raised.\r\n            </summary>\r\n            <returns>\r\n            A Raise(TEventArgs)-object that exposes the eventhandler to attatch.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Raise`1\">\r\n            <summary>\r\n            A class exposing an event handler to attatch to an event of a faked object\r\n            in order to raise that event.\r\n            </summary>\r\n            <typeparam name=\"TEventArgs\">The type of the event args.</typeparam>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Raise`1.Now(System.Object,`0)\">\r\n            <summary>\r\n            Register this event handler to an event on a faked object in order to raise that event.\r\n            </summary>\r\n            <param name=\"sender\">The sender of the event.</param>\r\n            <param name=\"e\">Event args for the event.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Raise`1.Go\">\r\n            <summary>\r\n            Gets a generic event handler to attatch to the event to raise.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Recorders\">\r\n            <summary>\r\n            Provides methods for creating recorders for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.Repeated\">\r\n            <summary>\r\n            Provides syntax for specifying the number of times a call must have been repeated when asserting on \r\n            fake object calls.\r\n            </summary>\r\n            <example>A.CallTo(() => foo.Bar()).Assert(Happened.Once.Exactly);</example>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Like(System.Linq.Expressions.Expression{System.Func{System.Int32,System.Boolean}})\">\r\n            <summary>\r\n            Specifies that a call must have been repeated a number of times\r\n            that is validated by the specified repeatValidation argument.\r\n            </summary>\r\n            <param name=\"repeatValidation\">A predicate that specifies the number of times\r\n            a call must have been made.</param>\r\n            <returns>A Repeated-instance.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.Repeated.Matches(System.Int32)\">\r\n            <summary>\r\n            When implemented gets a value indicating if the repeat is matched\r\n            by the Happened-instance.\r\n            </summary>\r\n            <param name=\"repeat\">The repeat of a call.</param>\r\n            <returns>True if the repeat is a match.</returns>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Never\">\r\n            <summary>\r\n            Asserts that a call has not happened at all.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.Exactly\">\r\n            <summary>\r\n            The call must have happened exactly the number of times that is specified in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.AtLeast\">\r\n            <summary>\r\n            The call must have happened any number of times greater than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.Repeated.NoMoreThan\">\r\n            <summary>\r\n            The call must have happened any number of times less than or equal to the number of times that is specified\r\n            in the next step.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.RootModule\">\r\n            <summary>\r\n            Handles the registration of root dependencies in an IoC-container.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.RootModule.RegisterDependencies(FakeItEasy.IoC.DictionaryContainer)\">\r\n            <summary>\r\n            Registers the dependencies.\r\n            </summary>\r\n            <param name=\"container\">The container to register the dependencies in.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.CallData\">\r\n            <summary>\r\n            DTO for recorded calls.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.CallData.#ctor(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable{System.Object},System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.CallData\"/> class.\r\n            </summary>\r\n            <param name=\"method\">The method.</param>\r\n            <param name=\"outputArguments\">The output arguments.</param>\r\n            <param name=\"returnValue\">The return value.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.Method\">\r\n            <summary>\r\n            Gets the method that was called.\r\n            </summary>\r\n            <value>The method.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.OutputArguments\">\r\n            <summary>\r\n            Gets the output arguments of the call.\r\n            </summary>\r\n            <value>The output arguments.</value>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.CallData.ReturnValue\">\r\n            <summary>\r\n            Gets the return value of the call.\r\n            </summary>\r\n            <value>The return value.</value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ICallStorage\">\r\n            <summary>\r\n            Represents storage for recorded calls for self initializing\r\n            fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Load\">\r\n            <summary>\r\n            Loads the recorded calls for the specified recording.\r\n            </summary>\r\n            <returns>The recorded calls for the recording with the specified id.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ICallStorage.Save(System.Collections.Generic.IEnumerable{FakeItEasy.SelfInitializedFakes.CallData})\">\r\n            <summary>\r\n            Saves the specified calls as the recording with the specified id,\r\n            overwriting any previous recording.\r\n            </summary>\r\n            <param name=\"calls\">The calls to save.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder\">\r\n            <summary>\r\n            An interface for recorders that provides stored responses for self initializing fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\">\r\n            <summary>\r\n            An exception that can be thrown when recording for self initialized\r\n            fakes fails or when playback fails.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingException\"/> class.\r\n            </summary>\r\n            <param name=\"message\">The message.</param>\r\n            <param name=\"innerException\">The inner exception.</param>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\">\r\n            <summary>\r\n            Manages the applying of recorded calls and recording of new calls when\r\n            using self initialized fakes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.#ctor(FakeItEasy.SelfInitializedFakes.ICallStorage)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager\"/> class.\r\n            </summary>\r\n            <param name=\"storage\">The storage.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.ApplyNext(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies the call if the call has been recorded.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply to from recording.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.RecordCall(FakeItEasy.Core.ICompletedFakeObjectCall)\">\r\n            <summary>\r\n            Records the specified call.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to record.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.RecordingManager.Dispose\">\r\n            <summary>\r\n            Saves all recorded calls to the storage.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.RecordingManager.IsRecording\">\r\n            <summary>\r\n            Gets a value indicating if the recorder is currently recording.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.RecordingManager.Factory\">\r\n            <summary>\r\n            Represents a factory responsible for creating recording manager\r\n            instances.\r\n            </summary>\r\n            <param name=\"storage\">The storage the manager should use.</param>\r\n            <returns>A RecordingManager instance.</returns>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\">\r\n            <summary>\r\n            A call rule use for self initializing fakes, delegates call to\r\n            be applied by the recorder.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.#ctor(FakeItEasy.Core.IFakeObjectCallRule,FakeItEasy.SelfInitializedFakes.ISelfInitializingFakeRecorder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FakeItEasy.SelfInitializedFakes.SelfInitializationRule\"/> class.\r\n            </summary>\r\n            <param name=\"wrappedRule\">The wrapped rule.</param>\r\n            <param name=\"recorder\">The recorder.</param>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.IsApplicableTo(FakeItEasy.Core.IFakeObjectCall)\">\r\n            <summary>\r\n            Gets wether this interceptor is applicable to the specified\r\n            call, if true is returned the Apply-method of the interceptor will\r\n            be called.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to check for applicability.</param>\r\n            <returns>True if the interceptor is applicable.</returns>\r\n        </member>\r\n        <member name=\"M:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.Apply(FakeItEasy.Core.IInterceptedFakeObjectCall)\">\r\n            <summary>\r\n            Applies an action to the call, might set a return value or throw\r\n            an exception.\r\n            </summary>\r\n            <param name=\"fakeObjectCall\">The call to apply the interceptor to.</param>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SelfInitializedFakes.SelfInitializationRule.NumberOfTimesToCall\">\r\n            <summary>\r\n            Gets the number of times this call rule is valid, if it's set\r\n            to null its infinitely valid.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SmellyAttribute\">\r\n            <summary>\r\n            An attribute that can be applied to code that should be fixed becuase theres a\r\n            code smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:FakeItEasy.SmellyAttribute.Description\">\r\n            <summary>\r\n            A description of the smell.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.UnderTestAttribute\">\r\n            <summary>\r\n            Used to tag fields and properties that will be initialized as a SUT through the Fake.Initialize-mehtod.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.SerializableAttribute\">\r\n            <summary>\r\n            Fixes so that existing Serializable-attributes are omitted in the compilation\r\n            of the silverlight project.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:FakeItEasy.NonSerializedAttribute\">\r\n            <summary>\r\n            Fixes so that existing NonSerialized-attributes are omitted in the compilation\r\n            of the silverlight project.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Mono.Options.5.3.0.1/THIRD-PARTY-NOTICES.txt",
    "content": "THIRD-PARTY SOFTWARE NOTICES AND INFORMATION\nDo not translate or localize\n\nXamarin Component for Mono.Options incorporates \nthird party material from the projects listed below. The original copyright \nnotice and the license under which Microsoft received such third party \nmaterial are set forth below.  Microsoft reserves all other rights not \nexpressly granted, whether by implication, estoppel or otherwise.\n\n########################################\n# mono\n# https://github.com/mono/mono\n########################################\n\n\nIn general, the runtime and its class libraries are licensed under the\nterms of the MIT license, and some third party code is licensed under\nthe 3-clause BSD license.  See the file \"PATENTS.TXT\" for Microsoft's\npatent grant on the Mono codebase.\n\nThe Mono distribution does include a handful of pieces of code that\nare used during the build system and are covered under different\nlicenses, those include:\n\nBuild Time Code\n===============\n\nThis is code that is used at build time, or during the maintenance of\nMono itself, and does not end up in the redistributable part of Mono:\n\n* gettext\n\n  m4 source files used to probe features at build time: GPL\n\n* Benchmark Source Files\n\n  Logic.cs and zipmark.cs are GPL source files.\n\n* mono/docs/HtmlAgilityPack\n\n  MS-PL licensed\n\n* mcs/jay: 4-clause BSD licensed\n\n* mcs/nunit24: MS-PL\n\n* mcs/class/I18N/mklist.sh, tools/cvt.sh: GNU GPLv2\n\nRuntime Code\n============\n\nThe following code is linked with the final Mono runtime, the libmono\nembeddable runtime:\n\n* support/minizip: BSD license.\n\n* mono/utils/memcheck.h: BSD license, used on debug builds that use Valgrind.\n\n* mono/utils/freebsd-dwarf.h, freebsd-elf_common.h, freebsd-elf64.h freebsd-elf32.h: BSD license.\n\n* mono/utils/bsearch.c: BSD license.\n\n* mono/io-layer/wapi_glob.h, wapi_glob.c: BSD license\n\nClass Library code\n==================\n\nThese are class libraries that can be loaded by your process:\n\n* mcs/class/RabbitMQ.Client: dual licensed in Apache v2, and Mozilla Public License 1.1\n\n* mcs/class/Compat.ICSharpCode.SharpZipLib and\n  mcs/class/ICSharpCode.SharpZipLib are GPL with class-path exception.\n  Originates with the SharpDevelop project.\n\n* mcs/class/System.Core/System/TimeZoneInfo.Android.cs\n\n  This is a port of Apache 2.0-licensed Android code, and thus is\n  licensed under the Apache 2.0 license\n\n\t    http://www.apache.org/licenses/LICENSE-2.0\n\nAPI Documentation\n=================\n\nThe API documentation is licensed under the terms of the Creative\nCommons Attribution 4.0 International Public License\n\n\nThe Licenses\n============\n\n\tThese are the licenses used in Mono, the files are located:\n\n### MIT X11 License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n### Mozilla.MPL\n\n                          MOZILLA PUBLIC LICENSE\n                                Version 1.1\n\n                              ---------------\n\n1. Definitions.\n\n     1.0.1. \"Commercial Use\" means distribution or otherwise making the\n     Covered Code available to a third party.\n\n     1.1. \"Contributor\" means each entity that creates or contributes to\n     the creation of Modifications.\n\n     1.2. \"Contributor Version\" means the combination of the Original\n     Code, prior Modifications used by a Contributor, and the Modifications\n     made by that particular Contributor.\n\n     1.3. \"Covered Code\" means the Original Code or Modifications or the\n     combination of the Original Code and Modifications, in each case\n     including portions thereof.\n\n     1.4. \"Electronic Distribution Mechanism\" means a mechanism generally\n     accepted in the software development community for the electronic\n     transfer of data.\n\n     1.5. \"Executable\" means Covered Code in any form other than Source\n     Code.\n\n     1.6. \"Initial Developer\" means the individual or entity identified\n     as the Initial Developer in the Source Code notice required by Exhibit\n     A.\n\n     1.7. \"Larger Work\" means a work which combines Covered Code or\n     portions thereof with code not governed by the terms of this License.\n\n     1.8. \"License\" means this document.\n\n     1.8.1. \"Licensable\" means having the right to grant, to the maximum\n     extent possible, whether at the time of the initial grant or\n     subsequently acquired, any and all of the rights conveyed herein.\n\n     1.9. \"Modifications\" means any addition to or deletion from the\n     substance or structure of either the Original Code or any previous\n     Modifications. When Covered Code is released as a series of files, a\n     Modification is:\n          A. Any addition to or deletion from the contents of a file\n          containing Original Code or previous Modifications.\n\n          B. Any new file that contains any part of the Original Code or\n          previous Modifications.\n\n     1.10. \"Original Code\" means Source Code of computer software code\n     which is described in the Source Code notice required by Exhibit A as\n     Original Code, and which, at the time of its release under this\n     License is not already Covered Code governed by this License.\n\n     1.10.1. \"Patent Claims\" means any patent claim(s), now owned or\n     hereafter acquired, including without limitation,  method, process,\n     and apparatus claims, in any patent Licensable by grantor.\n\n     1.11. \"Source Code\" means the preferred form of the Covered Code for\n     making modifications to it, including all modules it contains, plus\n     any associated interface definition files, scripts used to control\n     compilation and installation of an Executable, or source code\n     differential comparisons against either the Original Code or another\n     well known, available Covered Code of the Contributor's choice. The\n     Source Code can be in a compressed or archival form, provided the\n     appropriate decompression or de-archiving software is widely available\n     for no charge.\n\n     1.12. \"You\" (or \"Your\")  means an individual or a legal entity\n     exercising rights under, and complying with all of the terms of, this\n     License or a future version of this License issued under Section 6.1.\n     For legal entities, \"You\" includes any entity which controls, is\n     controlled by, or is under common control with You. For purposes of\n     this definition, \"control\" means (a) the power, direct or indirect,\n     to cause the direction or management of such entity, whether by\n     contract or otherwise, or (b) ownership of more than fifty percent\n     (50%) of the outstanding shares or beneficial ownership of such\n     entity.\n\n2. Source Code License.\n\n     2.1. The Initial Developer Grant.\n     The Initial Developer hereby grants You a world-wide, royalty-free,\n     non-exclusive license, subject to third party intellectual property\n     claims:\n          (a)  under intellectual property rights (other than patent or\n          trademark) Licensable by Initial Developer to use, reproduce,\n          modify, display, perform, sublicense and distribute the Original\n          Code (or portions thereof) with or without Modifications, and/or\n          as part of a Larger Work; and\n\n          (b) under Patents Claims infringed by the making, using or\n          selling of Original Code, to make, have made, use, practice,\n          sell, and offer for sale, and/or otherwise dispose of the\n          Original Code (or portions thereof).\n\n          (c) the licenses granted in this Section 2.1(a) and (b) are\n          effective on the date Initial Developer first distributes\n          Original Code under the terms of this License.\n\n          (d) Notwithstanding Section 2.1(b) above, no patent license is\n          granted: 1) for code that You delete from the Original Code; 2)\n          separate from the Original Code;  or 3) for infringements caused\n          by: i) the modification of the Original Code or ii) the\n          combination of the Original Code with other software or devices.\n\n     2.2. Contributor Grant.\n     Subject to third party intellectual property claims, each Contributor\n     hereby grants You a world-wide, royalty-free, non-exclusive license\n\n          (a)  under intellectual property rights (other than patent or\n          trademark) Licensable by Contributor, to use, reproduce, modify,\n          display, perform, sublicense and distribute the Modifications\n          created by such Contributor (or portions thereof) either on an\n          unmodified basis, with other Modifications, as Covered Code\n          and/or as part of a Larger Work; and\n\n          (b) under Patent Claims infringed by the making, using, or\n          selling of  Modifications made by that Contributor either alone\n          and/or in combination with its Contributor Version (or portions\n          of such combination), to make, use, sell, offer for sale, have\n          made, and/or otherwise dispose of: 1) Modifications made by that\n          Contributor (or portions thereof); and 2) the combination of\n          Modifications made by that Contributor with its Contributor\n          Version (or portions of such combination).\n\n          (c) the licenses granted in Sections 2.2(a) and 2.2(b) are\n          effective on the date Contributor first makes Commercial Use of\n          the Covered Code.\n\n          (d)    Notwithstanding Section 2.2(b) above, no patent license is\n          granted: 1) for any code that Contributor has deleted from the\n          Contributor Version; 2)  separate from the Contributor Version;\n          3)  for infringements caused by: i) third party modifications of\n          Contributor Version or ii)  the combination of Modifications made\n          by that Contributor with other software  (except as part of the\n          Contributor Version) or other devices; or 4) under Patent Claims\n          infringed by Covered Code in the absence of Modifications made by\n          that Contributor.\n\n3. Distribution Obligations.\n\n     3.1. Application of License.\n     The Modifications which You create or to which You contribute are\n     governed by the terms of this License, including without limitation\n     Section 2.2. The Source Code version of Covered Code may be\n     distributed only under the terms of this License or a future version\n     of this License released under Section 6.1, and You must include a\n     copy of this License with every copy of the Source Code You\n     distribute. You may not offer or impose any terms on any Source Code\n     version that alters or restricts the applicable version of this\n     License or the recipients' rights hereunder. However, You may include\n     an additional document offering the additional rights described in\n     Section 3.5.\n\n     3.2. Availability of Source Code.\n     Any Modification which You create or to which You contribute must be\n     made available in Source Code form under the terms of this License\n     either on the same media as an Executable version or via an accepted\n     Electronic Distribution Mechanism to anyone to whom you made an\n     Executable version available; and if made available via Electronic\n     Distribution Mechanism, must remain available for at least twelve (12)\n     months after the date it initially became available, or at least six\n     (6) months after a subsequent version of that particular Modification\n     has been made available to such recipients. You are responsible for\n     ensuring that the Source Code version remains available even if the\n     Electronic Distribution Mechanism is maintained by a third party.\n\n     3.3. Description of Modifications.\n     You must cause all Covered Code to which You contribute to contain a\n     file documenting the changes You made to create that Covered Code and\n     the date of any change. You must include a prominent statement that\n     the Modification is derived, directly or indirectly, from Original\n     Code provided by the Initial Developer and including the name of the\n     Initial Developer in (a) the Source Code, and (b) in any notice in an\n     Executable version or related documentation in which You describe the\n     origin or ownership of the Covered Code.\n\n     3.4. Intellectual Property Matters\n          (a) Third Party Claims.\n          If Contributor has knowledge that a license under a third party's\n          intellectual property rights is required to exercise the rights\n          granted by such Contributor under Sections 2.1 or 2.2,\n          Contributor must include a text file with the Source Code\n          distribution titled \"LEGAL\" which describes the claim and the\n          party making the claim in sufficient detail that a recipient will\n          know whom to contact. If Contributor obtains such knowledge after\n          the Modification is made available as described in Section 3.2,\n          Contributor shall promptly modify the LEGAL file in all copies\n          Contributor makes available thereafter and shall take other steps\n          (such as notifying appropriate mailing lists or newsgroups)\n          reasonably calculated to inform those who received the Covered\n          Code that new knowledge has been obtained.\n\n          (b) Contributor APIs.\n          If Contributor's Modifications include an application programming\n          interface and Contributor has knowledge of patent licenses which\n          are reasonably necessary to implement that API, Contributor must\n          also include this information in the LEGAL file.\n\n               (c)    Representations.\n          Contributor represents that, except as disclosed pursuant to\n          Section 3.4(a) above, Contributor believes that Contributor's\n          Modifications are Contributor's original creation(s) and/or\n          Contributor has sufficient rights to grant the rights conveyed by\n          this License.\n\n     3.5. Required Notices.\n     You must duplicate the notice in Exhibit A in each file of the Source\n     Code.  If it is not possible to put such notice in a particular Source\n     Code file due to its structure, then You must include such notice in a\n     location (such as a relevant directory) where a user would be likely\n     to look for such a notice.  If You created one or more Modification(s)\n     You may add your name as a Contributor to the notice described in\n     Exhibit A.  You must also duplicate this License in any documentation\n     for the Source Code where You describe recipients' rights or ownership\n     rights relating to Covered Code.  You may choose to offer, and to\n     charge a fee for, warranty, support, indemnity or liability\n     obligations to one or more recipients of Covered Code. However, You\n     may do so only on Your own behalf, and not on behalf of the Initial\n     Developer or any Contributor. You must make it absolutely clear than\n     any such warranty, support, indemnity or liability obligation is\n     offered by You alone, and You hereby agree to indemnify the Initial\n     Developer and every Contributor for any liability incurred by the\n     Initial Developer or such Contributor as a result of warranty,\n     support, indemnity or liability terms You offer.\n\n     3.6. Distribution of Executable Versions.\n     You may distribute Covered Code in Executable form only if the\n     requirements of Section 3.1-3.5 have been met for that Covered Code,\n     and if You include a notice stating that the Source Code version of\n     the Covered Code is available under the terms of this License,\n     including a description of how and where You have fulfilled the\n     obligations of Section 3.2. The notice must be conspicuously included\n     in any notice in an Executable version, related documentation or\n     collateral in which You describe recipients' rights relating to the\n     Covered Code. You may distribute the Executable version of Covered\n     Code or ownership rights under a license of Your choice, which may\n     contain terms different from this License, provided that You are in\n     compliance with the terms of this License and that the license for the\n     Executable version does not attempt to limit or alter the recipient's\n     rights in the Source Code version from the rights set forth in this\n     License. If You distribute the Executable version under a different\n     license You must make it absolutely clear that any terms which differ\n     from this License are offered by You alone, not by the Initial\n     Developer or any Contributor. You hereby agree to indemnify the\n     Initial Developer and every Contributor for any liability incurred by\n     the Initial Developer or such Contributor as a result of any such\n     terms You offer.\n\n     3.7. Larger Works.\n     You may create a Larger Work by combining Covered Code with other code\n     not governed by the terms of this License and distribute the Larger\n     Work as a single product. In such a case, You must make sure the\n     requirements of this License are fulfilled for the Covered Code.\n\n4. Inability to Comply Due to Statute or Regulation.\n\n     If it is impossible for You to comply with any of the terms of this\n     License with respect to some or all of the Covered Code due to\n     statute, judicial order, or regulation then You must: (a) comply with\n     the terms of this License to the maximum extent possible; and (b)\n     describe the limitations and the code they affect. Such description\n     must be included in the LEGAL file described in Section 3.4 and must\n     be included with all distributions of the Source Code. Except to the\n     extent prohibited by statute or regulation, such description must be\n     sufficiently detailed for a recipient of ordinary skill to be able to\n     understand it.\n\n5. Application of this License.\n\n     This License applies to code to which the Initial Developer has\n     attached the notice in Exhibit A and to related Covered Code.\n\n6. Versions of the License.\n\n     6.1. New Versions.\n     Netscape Communications Corporation (\"Netscape\") may publish revised\n     and/or new versions of the License from time to time. Each version\n     will be given a distinguishing version number.\n\n     6.2. Effect of New Versions.\n     Once Covered Code has been published under a particular version of the\n     License, You may always continue to use it under the terms of that\n     version. You may also choose to use such Covered Code under the terms\n     of any subsequent version of the License published by Netscape. No one\n     other than Netscape has the right to modify the terms applicable to\n     Covered Code created under this License.\n\n     6.3. Derivative Works.\n     If You create or use a modified version of this License (which you may\n     only do in order to apply it to code which is not already Covered Code\n     governed by this License), You must (a) rename Your license so that\n     the phrases \"Mozilla\", \"MOZILLAPL\", \"MOZPL\", \"Netscape\",\n     \"MPL\", \"NPL\" or any confusingly similar phrase do not appear in your\n     license (except to note that your license differs from this License)\n     and (b) otherwise make it clear that Your version of the license\n     contains terms which differ from the Mozilla Public License and\n     Netscape Public License. (Filling in the name of the Initial\n     Developer, Original Code or Contributor in the notice described in\n     Exhibit A shall not of themselves be deemed to be modifications of\n     this License.)\n\n7. DISCLAIMER OF WARRANTY.\n\n     COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n     WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\n     WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF\n     DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.\n     THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE\n     IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,\n     YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE\n     COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER\n     OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\n     ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n8. TERMINATION.\n\n     8.1.  This License and the rights granted hereunder will terminate\n     automatically if You fail to comply with terms herein and fail to cure\n     such breach within 30 days of becoming aware of the breach. All\n     sublicenses to the Covered Code which are properly granted shall\n     survive any termination of this License. Provisions which, by their\n     nature, must remain in effect beyond the termination of this License\n     shall survive.\n\n     8.2.  If You initiate litigation by asserting a patent infringement\n     claim (excluding declatory judgment actions) against Initial Developer\n     or a Contributor (the Initial Developer or Contributor against whom\n     You file such action is referred to as \"Participant\")  alleging that:\n\n     (a)  such Participant's Contributor Version directly or indirectly\n     infringes any patent, then any and all rights granted by such\n     Participant to You under Sections 2.1 and/or 2.2 of this License\n     shall, upon 60 days notice from Participant terminate prospectively,\n     unless if within 60 days after receipt of notice You either: (i)\n     agree in writing to pay Participant a mutually agreeable reasonable\n     royalty for Your past and future use of Modifications made by such\n     Participant, or (ii) withdraw Your litigation claim with respect to\n     the Contributor Version against such Participant.  If within 60 days\n     of notice, a reasonable royalty and payment arrangement are not\n     mutually agreed upon in writing by the parties or the litigation claim\n     is not withdrawn, the rights granted by Participant to You under\n     Sections 2.1 and/or 2.2 automatically terminate at the expiration of\n     the 60 day notice period specified above.\n\n     (b)  any software, hardware, or device, other than such Participant's\n     Contributor Version, directly or indirectly infringes any patent, then\n     any rights granted to You by such Participant under Sections 2.1(b)\n     and 2.2(b) are revoked effective as of the date You first made, used,\n     sold, distributed, or had made, Modifications made by that\n     Participant.\n\n     8.3.  If You assert a patent infringement claim against Participant\n     alleging that such Participant's Contributor Version directly or\n     indirectly infringes any patent where such claim is resolved (such as\n     by license or settlement) prior to the initiation of patent\n     infringement litigation, then the reasonable value of the licenses\n     granted by such Participant under Sections 2.1 or 2.2 shall be taken\n     into account in determining the amount or value of any payment or\n     license.\n\n     8.4.  In the event of termination under Sections 8.1 or 8.2 above,\n     all end user license agreements (excluding distributors and resellers)\n     which have been validly granted by You or any distributor hereunder\n     prior to termination shall survive termination.\n\n9. LIMITATION OF LIABILITY.\n\n     UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n     (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL\n     DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,\n     OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR\n     ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY\n     CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,\n     WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n     COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n     INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\n     LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\n     RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW\n     PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE\n     EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO\n     THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n10. U.S. GOVERNMENT END USERS.\n\n     The Covered Code is a \"commercial item,\" as that term is defined in\n     48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\n     software\" and \"commercial computer software documentation,\" as such\n     terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48\n     C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),\n     all U.S. Government End Users acquire Covered Code with only those\n     rights set forth herein.\n\n11. MISCELLANEOUS.\n\n     This License represents the complete agreement concerning subject\n     matter hereof. If any provision of this License is held to be\n     unenforceable, such provision shall be reformed only to the extent\n     necessary to make it enforceable. This License shall be governed by\n     California law provisions (except to the extent applicable law, if\n     any, provides otherwise), excluding its conflict-of-law provisions.\n     With respect to disputes in which at least one party is a citizen of,\n     or an entity chartered or registered to do business in the United\n     States of America, any litigation relating to this License shall be\n     subject to the jurisdiction of the Federal Courts of the Northern\n     District of California, with venue lying in Santa Clara County,\n     California, with the losing party responsible for costs, including\n     without limitation, court costs and reasonable attorneys' fees and\n     expenses. The application of the United Nations Convention on\n     Contracts for the International Sale of Goods is expressly excluded.\n     Any law or regulation which provides that the language of a contract\n     shall be construed against the drafter shall not apply to this\n     License.\n\n12. RESPONSIBILITY FOR CLAIMS.\n\n     As between Initial Developer and the Contributors, each party is\n     responsible for claims and damages arising, directly or indirectly,\n     out of its utilization of rights under this License and You agree to\n     work with Initial Developer and Contributors to distribute such\n     responsibility on an equitable basis. Nothing herein is intended or\n     shall be deemed to constitute any admission of liability.\n\n13. MULTIPLE-LICENSED CODE.\n\n     Initial Developer may designate portions of the Covered Code as\n     \"Multiple-Licensed\".  \"Multiple-Licensed\" means that the Initial\n     Developer permits you to utilize portions of the Covered Code under\n     Your choice of the NPL or the alternative licenses, if any, specified\n     by the Initial Developer in the file described in Exhibit A.\n\nEXHIBIT A -Mozilla Public License.\n\n     ``The contents of this file are subject to the Mozilla Public License\n     Version 1.1 (the \"License\"); you may not use this file except in\n     compliance with the License. You may obtain a copy of the License at\n     http://www.mozilla.org/MPL/\n\n     Software distributed under the License is distributed on an \"AS IS\"\n     basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the\n     License for the specific language governing rights and limitations\n     under the License.\n\n     The Original Code is ______________________________________.\n\n     The Initial Developer of the Original Code is ________________________.\n     Portions created by ______________________ are Copyright (C) ______\n     _______________________. All Rights Reserved.\n\n     Contributor(s): ______________________________________.\n\n     Alternatively, the contents of this file may be used under the terms\n     of the _____ license (the  \"[___] License\"), in which case the\n     provisions of [______] License are applicable instead of those\n     above.  If you wish to allow use of your version of this file only\n     under the terms of the [____] License and not to allow others to use\n     your version of this file under the MPL, indicate your decision by\n     deleting  the provisions above and replace  them with the notice and\n     other provisions required by the [___] License.  If you do not delete\n     the provisions above, a recipient may use your version of this file\n     under either the MPL or the [___] License.\"\n\n     [NOTE: The text of this Exhibit A may differ slightly from the text of\n     the notices in the Source Code files of the Original Code. You should\n     use the text of this Exhibit A rather than the text found in the\n     Original Code Source Code for Your Modifications.]\n\n### Microsoft Public License\n\nMicrosoft Permissive License (Ms-PL)\n \n\tThis license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.\n \n1. Definitions\n\n\tThe terms reproduce, reproduction, derivative works, and distribution have the same meaning here as under U.S. copyright law.\n\tA contribution is the original software, or any additions or changes to the software.\n\tA contributor is any person that distributes its contribution under this license.\n\t Licensed patents are a contributors patent claims that read directly on its contribution.\n \n2. Grant of Rights\n\n\t(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.\n\t(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.\n \n3. Conditions and Limitations\n\n\t(A) No Trademark License- This license does not grant you rights to use any contributors name, logo, or trademarks.\n\t(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.\n\t(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.\n\t(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.\n\t(E) The software is licensed as-is. You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.\n\t(F) If you distribute the software or derivative works with programs you develop, you agree to indemnify, defend, and hold harmless all contributors from any claims, including attorneys fees, related to the distribution or use of your programs.  For clarity, you have no such obligations to a contributor for any claims based solely on the unmodified contributions of that contributor.\n\t(G) If you make any additions or changes to the original software, you may only distribute them under a new namespace.  In addition, you will clearly identify your changes or additions as your own.\n\n### Infozip BSD\n\nThis is version 2009-Jan-02 of the Info-ZIP license. The definitive\nversion of this document should be available at\nftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and a\ncopy at http://www.info-zip.org/pub/infozip/license.html.\n\nCopyright (c) 1990-2009 Info-ZIP. All rights reserved.\n\nFor the purposes of this copyright and license, \"Info-ZIP\" is defined\nas the following set of individuals: Mark Adler, John Bush, Karl\nDavis, Harald Denker, Jean-Michel Dubois, Jean-loup Gailly, Hunter\nGoatley, Ed Gordon, Ian Gorman, Chris Herborth, Dirk Haase, Greg\nHartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David\nKirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve\nP. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs,\nKai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda,\nChristian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren,\nRich Wales, Mike White.\n\nThis software is provided \"as is,\" without warranty of any kind,\nexpress or implied. In no event shall Info-ZIP or its contributors be\nheld liable for any direct, indirect, incidental, special or\nconsequential damages arising out of the use of or inability to use\nthis software.\n\nPermission is granted to anyone to use this software for any purpose,\nincluding commercial applications, and to alter it and redistribute it\nfreely, subject to the above disclaimer and the following\nrestrictions:\n\nRedistributions of source code (in whole or in part) must retain the\nabove copyright notice, definition, disclaimer, and this list of\nconditions.\n\nRedistributions in binary form (compiled executables and libraries)\nmust reproduce the above copyright notice, definition, disclaimer, and\nthis list of conditions in documentation and/or other materials\nprovided with the distribution. Additional documentation is not needed\nfor executables where a command line license option provides these and\na note regarding this option is in the executable's startup\nbanner. The sole exception to this condition is redistribution of a\nstandard UnZipSFX binary (including SFXWiz) as part of a\nself-extracting archive; that is permitted without inclusion of this\nlicense, as long as the normal SFX banner has not been removed from\nthe binary or disabled.\n\nAltered versions--including, but not limited to, ports to new\noperating systems, existing ports with new graphical interfaces,\nversions with modified or added functionality, and dynamic, shared, or\nstatic library versions not from Info-ZIP--must be plainly marked as\nsuch and must not be misrepresented as being the original source or,\nif binaries, compiled from the original source. Such altered versions\nalso must not be misrepresented as being Info-ZIP releases--including,\nbut not limited to, labeling of the altered versions with the names\n\"Info-ZIP\" (or any variation thereof, including, but not limited to,\ndifferent capitalizations), \"Pocket UnZip,\" \"WiZ\" or \"MacZip\" without\nthe explicit permission of Info-ZIP. Such altered versions are further\nprohibited from misrepresentative use of the Zip-Bugs or Info-ZIP\ne-mail addresses or the Info-ZIP URL(s), such as to imply Info-ZIP\nwill provide support for the altered versions.\n\nInfo-ZIP retains the right to use the names \"Info-ZIP,\" \"Zip,\"\n\"UnZip,\" \"UnZipSFX,\" \"WiZ,\" \"Pocket UnZip,\" \"Pocket Zip,\" and \"MacZip\"\nfor its own source and binary releases.\n\n### License Creative Commons 2.5\n\n// Copyright 2006 James Newton-King\n// http://www.newtonsoft.com\n//\n// This work is licensed under the Creative Commons Attribution 2.5 License\n// http://creativecommons.org/licenses/by/2.5/\n//\n// You are free:\n//    * to copy, distribute, display, and perform the work\n//    * to make derivative works\n//    * to make commercial use of the work\n//\n// Under the following conditions:\n//    * For any reuse or distribution, you must make clear to others the license terms of this work.\n//    * Any of these conditions can be waived if you get permission from the copyright holder.\n\nFrom: james.newtonking@gmail.com [mailto:james.newtonking@gmail.com] On Behalf Of James Newton-King\nSent: Tuesday, June 05, 2007 6:36 AM\nTo: Konstantin Triger\nSubject: Re: Support request by Konstantin Triger for Json.NET\n\nHey Kosta\n\nI think it would be awesome to use Json.NET in Mono for System.Web.Extensions.\n\nThe CC license has the following clause: Any of the above conditions can be waived if you get permission from the copyright holder.\n\nI can waive that statement for you and Mono. Would that be acceptable?\n\n\nRegards,\nJames\n\n### Creative Commons Attribution 4.0 International Public License\n\nAttribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n     Considerations for licensors: Our public licenses are\n     intended for use by those authorized to give the public\n     permission to use material in ways otherwise restricted by\n     copyright and certain other rights. Our licenses are\n     irrevocable. Licensors should read and understand the terms\n     and conditions of the license they choose before applying it.\n     Licensors should also secure all rights necessary before\n     applying our licenses so that the public can reuse the\n     material as expected. Licensors should clearly mark any\n     material not subject to the license. This includes other CC-\n     licensed material, or material used under an exception or\n     limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n     Considerations for the public: By using one of our public\n     licenses, a licensor grants the public permission to use the\n     licensed material under specified terms and conditions. If\n     the licensor's permission is not necessary for any reason--for\n     example, because of any applicable exception or limitation to\n     copyright--then that use is not regulated by the license. Our\n     licenses grant only permissions under copyright and certain\n     other rights that a licensor has authority to grant. Use of\n     the licensed material may still be restricted for other\n     reasons, including because others have copyright or other\n     rights in the material. A licensor may make special requests,\n     such as asking that all changes be marked or described.\n     Although not required by our licenses, you are encouraged to\n     respect those requests where reasonable. More_considerations\n     for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n  a. Adapted Material means material subject to Copyright and Similar\n     Rights that is derived from or based upon the Licensed Material\n     and in which the Licensed Material is translated, altered,\n     arranged, transformed, or otherwise modified in a manner requiring\n     permission under the Copyright and Similar Rights held by the\n     Licensor. For purposes of this Public License, where the Licensed\n     Material is a musical work, performance, or sound recording,\n     Adapted Material is always produced where the Licensed Material is\n     synched in timed relation with a moving image.\n\n  b. Adapter's License means the license You apply to Your Copyright\n     and Similar Rights in Your contributions to Adapted Material in\n     accordance with the terms and conditions of this Public License.\n\n  c. Copyright and Similar Rights means copyright and/or similar rights\n     closely related to copyright including, without limitation,\n     performance, broadcast, sound recording, and Sui Generis Database\n     Rights, without regard to how the rights are labeled or\n     categorized. For purposes of this Public License, the rights\n     specified in Section 2(b)(1)-(2) are not Copyright and Similar\n     Rights.\n\n  d. Effective Technological Measures means those measures that, in the\n     absence of proper authority, may not be circumvented under laws\n     fulfilling obligations under Article 11 of the WIPO Copyright\n     Treaty adopted on December 20, 1996, and/or similar international\n     agreements.\n\n  e. Exceptions and Limitations means fair use, fair dealing, and/or\n     any other exception or limitation to Copyright and Similar Rights\n     that applies to Your use of the Licensed Material.\n\n  f. Licensed Material means the artistic or literary work, database,\n     or other material to which the Licensor applied this Public\n     License.\n\n  g. Licensed Rights means the rights granted to You subject to the\n     terms and conditions of this Public License, which are limited to\n     all Copyright and Similar Rights that apply to Your use of the\n     Licensed Material and that the Licensor has authority to license.\n\n  h. Licensor means the individual(s) or entity(ies) granting rights\n     under this Public License.\n\n  i. Share means to provide material to the public by any means or\n     process that requires permission under the Licensed Rights, such\n     as reproduction, public display, public performance, distribution,\n     dissemination, communication, or importation, and to make material\n     available to the public including in ways that members of the\n     public may access the material from a place and at a time\n     individually chosen by them.\n\n  j. Sui Generis Database Rights means rights other than copyright\n     resulting from Directive 96/9/EC of the European Parliament and of\n     the Council of 11 March 1996 on the legal protection of databases,\n     as amended and/or succeeded, as well as other essentially\n     equivalent rights anywhere in the world.\n\n  k. You means the individual or entity exercising the Licensed Rights\n     under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n  a. License grant.\n\n       1. Subject to the terms and conditions of this Public License,\n          the Licensor hereby grants You a worldwide, royalty-free,\n          non-sublicensable, non-exclusive, irrevocable license to\n          exercise the Licensed Rights in the Licensed Material to:\n\n            a. reproduce and Share the Licensed Material, in whole or\n               in part; and\n\n            b. produce, reproduce, and Share Adapted Material.\n\n       2. Exceptions and Limitations. For the avoidance of doubt, where\n          Exceptions and Limitations apply to Your use, this Public\n          License does not apply, and You do not need to comply with\n          its terms and conditions.\n\n       3. Term. The term of this Public License is specified in Section\n          6(a).\n\n       4. Media and formats; technical modifications allowed. The\n          Licensor authorizes You to exercise the Licensed Rights in\n          all media and formats whether now known or hereafter created,\n          and to make technical modifications necessary to do so. The\n          Licensor waives and/or agrees not to assert any right or\n          authority to forbid You from making technical modifications\n          necessary to exercise the Licensed Rights, including\n          technical modifications necessary to circumvent Effective\n          Technological Measures. For purposes of this Public License,\n          simply making modifications authorized by this Section 2(a)\n          (4) never produces Adapted Material.\n\n       5. Downstream recipients.\n\n            a. Offer from the Licensor -- Licensed Material. Every\n               recipient of the Licensed Material automatically\n               receives an offer from the Licensor to exercise the\n               Licensed Rights under the terms and conditions of this\n               Public License.\n\n            b. No downstream restrictions. You may not offer or impose\n               any additional or different terms or conditions on, or\n               apply any Effective Technological Measures to, the\n               Licensed Material if doing so restricts exercise of the\n               Licensed Rights by any recipient of the Licensed\n               Material.\n\n       6. No endorsement. Nothing in this Public License constitutes or\n          may be construed as permission to assert or imply that You\n          are, or that Your use of the Licensed Material is, connected\n          with, or sponsored, endorsed, or granted official status by,\n          the Licensor or others designated to receive attribution as\n          provided in Section 3(a)(1)(A)(i).\n\n  b. Other rights.\n\n       1. Moral rights, such as the right of integrity, are not\n          licensed under this Public License, nor are publicity,\n          privacy, and/or other similar personality rights; however, to\n          the extent possible, the Licensor waives and/or agrees not to\n          assert any such rights held by the Licensor to the limited\n          extent necessary to allow You to exercise the Licensed\n          Rights, but not otherwise.\n\n       2. Patent and trademark rights are not licensed under this\n          Public License.\n\n       3. To the extent possible, the Licensor waives any right to\n          collect royalties from You for the exercise of the Licensed\n          Rights, whether directly or through a collecting society\n          under any voluntary or waivable statutory or compulsory\n          licensing scheme. In all other cases the Licensor expressly\n          reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n  a. Attribution.\n\n       1. If You Share the Licensed Material (including in modified\n          form), You must:\n\n            a. retain the following if it is supplied by the Licensor\n               with the Licensed Material:\n\n                 i. identification of the creator(s) of the Licensed\n                    Material and any others designated to receive\n                    attribution, in any reasonable manner requested by\n                    the Licensor (including by pseudonym if\n                    designated);\n\n                ii. a copyright notice;\n\n               iii. a notice that refers to this Public License;\n\n                iv. a notice that refers to the disclaimer of\n                    warranties;\n\n                 v. a URI or hyperlink to the Licensed Material to the\n                    extent reasonably practicable;\n\n            b. indicate if You modified the Licensed Material and\n               retain an indication of any previous modifications; and\n\n            c. indicate the Licensed Material is licensed under this\n               Public License, and include the text of, or the URI or\n               hyperlink to, this Public License.\n\n       2. You may satisfy the conditions in Section 3(a)(1) in any\n          reasonable manner based on the medium, means, and context in\n          which You Share the Licensed Material. For example, it may be\n          reasonable to satisfy the conditions by providing a URI or\n          hyperlink to a resource that includes the required\n          information.\n\n       3. If requested by the Licensor, You must remove any of the\n          information required by Section 3(a)(1)(A) to the extent\n          reasonably practicable.\n\n       4. If You Share Adapted Material You produce, the Adapter's\n          License You apply must not prevent recipients of the Adapted\n          Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n  a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n     to extract, reuse, reproduce, and Share all or a substantial\n     portion of the contents of the database;\n\n  b. if You include all or a substantial portion of the database\n     contents in a database in which You have Sui Generis Database\n     Rights, then the database in which You have Sui Generis Database\n     Rights (but not its individual contents) is Adapted Material; and\n\n  c. You must comply with the conditions in Section 3(a) if You Share\n     all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n  c. The disclaimer of warranties and limitation of liability provided\n     above shall be interpreted in a manner that, to the extent\n     possible, most closely approximates an absolute disclaimer and\n     waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n  a. This Public License applies for the term of the Copyright and\n     Similar Rights licensed here. However, if You fail to comply with\n     this Public License, then Your rights under this Public License\n     terminate automatically.\n\n  b. Where Your right to use the Licensed Material has terminated under\n     Section 6(a), it reinstates:\n\n       1. automatically as of the date the violation is cured, provided\n          it is cured within 30 days of Your discovery of the\n          violation; or\n\n       2. upon express reinstatement by the Licensor.\n\n     For the avoidance of doubt, this Section 6(b) does not affect any\n     right the Licensor may have to seek remedies for Your violations\n     of this Public License.\n\n  c. For the avoidance of doubt, the Licensor may also offer the\n     Licensed Material under separate terms or conditions or stop\n     distributing the Licensed Material at any time; however, doing so\n     will not terminate this Public License.\n\n  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n     License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n  a. The Licensor shall not be bound by any additional or different\n     terms or conditions communicated by You unless expressly agreed.\n\n  b. Any arrangements, understandings, or agreements regarding the\n     Licensed Material not stated herein are separate from and\n     independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n  a. For the avoidance of doubt, this Public License does not, and\n     shall not be interpreted to, reduce, limit, restrict, or impose\n     conditions on any use of the Licensed Material that could lawfully\n     be made without permission under this Public License.\n\n  b. To the extent possible, if any provision of this Public License is\n     deemed unenforceable, it shall be automatically reformed to the\n     minimum extent necessary to make it enforceable. If the provision\n     cannot be reformed, it shall be severed from this Public License\n     without affecting the enforceability of the remaining terms and\n     conditions.\n\n  c. No term or condition of this Public License will be waived and no\n     failure to comply consented to unless expressly agreed to by the\n     Licensor.\n\n  d. Nothing in this Public License constitutes or may be interpreted\n     as a limitation upon, or waiver of, any privileges and immunities\n     that apply to the Licensor or You, including from the legal\n     processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n\n### GPL version 2\n\n\t\t    GNU GENERAL PUBLIC LICENSE\n\t\t       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\t\t\t    Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users.  This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it.  (Some other Free Software Foundation software is covered by\nthe GNU Library General Public License instead.)  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have.  You must make sure that they, too, receive or can get the\nsource code.  And you must show them these terms so they know their\nrights.\n\n  We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n  Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware.  If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary.  To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\f\n\t\t    GNU GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License.  The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage.  (Hereinafter, translation is included without limitation in\nthe term \"modification\".)  Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n  1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n  2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) You must cause the modified files to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    b) You must cause any work that you distribute or publish, that in\n    whole or in part contains or is derived from the Program or any\n    part thereof, to be licensed as a whole at no charge to all third\n    parties under the terms of this License.\n\n    c) If the modified program normally reads commands interactively\n    when run, you must cause it, when started running for such\n    interactive use in the most ordinary way, to print or display an\n    announcement including an appropriate copyright notice and a\n    notice that there is no warranty (or else, saying that you provide\n    a warranty) and that users may redistribute the program under\n    these conditions, and telling the user how to view a copy of this\n    License.  (Exception: if the Program itself is interactive but\n    does not normally print such an announcement, your work based on\n    the Program is not required to print an announcement.)\n\f\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n    a) Accompany it with the complete corresponding machine-readable\n    source code, which must be distributed under the terms of Sections\n    1 and 2 above on a medium customarily used for software interchange; or,\n\n    b) Accompany it with a written offer, valid for at least three\n    years, to give any third party, for a charge no more than your\n    cost of physically performing source distribution, a complete\n    machine-readable copy of the corresponding source code, to be\n    distributed under the terms of Sections 1 and 2 above on a medium\n    customarily used for software interchange; or,\n\n    c) Accompany it with the information you received as to the offer\n    to distribute corresponding source code.  (This alternative is\n    allowed only for noncommercial distribution and only if you\n    received the program in object code or executable form with such\n    an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it.  For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable.  However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\f\n  4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License.  Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n  5. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n  6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n  7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\f\n  8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded.  In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n  9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation.  If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n  10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission.  For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this.  Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n\t\t\t    NO WARRANTY\n\n  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n\t\t     END OF TERMS AND CONDITIONS\n\f\n\t    How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 2 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program; if not, write to the Free Software\n    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n    Gnomovision version 69, Copyright (C) year  name of author\n    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n  `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n  <signature of Ty Coon>, 1 April 1989\n  Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs.  If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary.  If this is what you want to do, use the GNU Library General\nPublic License instead of this License.\n\n########################################\n# end - mono\n########################################"
  },
  {
    "path": "packages/NJasmine.0.3.2.0/tools/readme.txt",
    "content": "﻿Nuget package NJasmine is included to write tests, include NJasmine.NUnit to run tests http://nuget.org/packages/NJasmine.NUnit.\r\n"
  },
  {
    "path": "packages/NJasmine.NUnit.0.3.2.0/tools/install.ps1",
    "content": "﻿\r\nparam($installPath, $toolsPath, $package, $project)\r\n\r\n$nunitVersion = \"2.6.1\";\r\n$nunitRunnerPattern = \"NUnit.Runners.\" + $nunitVersion.substring(0, $nunitVersion.lastIndexOf(\".\")) + \".*\"\r\n\r\n$nunitPaths = gci (join-path $installPath \"..\") $nunitRunnerPattern | % { $_.fullname }\r\n\r\nforeach($nunitPath in $nunitPaths) {\r\n    \r\n    $targetPath = \"$nunitPath\\tools\\addins\";\r\n    \r\n    if (-not (test-path $targetPath)) {\r\n        $null = mkdir $targetPath\r\n    }\r\n    \r\n    cp \"$installPath\\lib\\*\" \"$nunitPath\\tools\\addins\"\r\n}\r\n"
  },
  {
    "path": "packages/NJasmine.NUnit.0.3.2.0/tools/readme.txt",
    "content": "﻿Run NJasmine tests by running the NUnit runners included with NUnit.Runners.  Nuget package NJasmine.NUnit copies the necessary DLLs to the corresponding addins folder.\r\n"
  },
  {
    "path": "packages/NUnit.2.6.1/lib/nunit.framework.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>nunit.framework</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:NUnit.Framework.CategoryAttribute\">\r\n            <summary>\r\n            Attribute used to apply a category to a test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.CategoryAttribute.categoryName\">\r\n            <summary>\r\n            The name of the category\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CategoryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct attribute for a given category based on\r\n            a name. The name may not contain the characters ',',\r\n            '+', '-' or '!'. However, this is not checked in the\r\n            constructor since it would cause an error to arise at\r\n            as the test was loaded without giving a clear indication\r\n            of where the problem is located. The error is handled\r\n            in NUnitFramework.cs by marking the test as not\r\n            runnable.\r\n            </summary>\r\n            <param name=\"name\">The name of the category</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CategoryAttribute.#ctor\">\r\n            <summary>\r\n            Protected constructor uses the Type name as the name\r\n            of the category.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.CategoryAttribute.Name\">\r\n            <summary>\r\n            The name of the category\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.DatapointAttribute\">\r\n            <summary>\r\n            Used to mark a field for use as a datapoint when executing a theory\r\n            within the same fixture that requires an argument of the field's Type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.DatapointsAttribute\">\r\n            <summary>\r\n            Used to mark an array as containing a set of datapoints to be used\r\n            executing a theory within the same fixture that requires an argument \r\n            of the Type of the array elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.DescriptionAttribute\">\r\n            <summary>\r\n            Attribute used to provide descriptive text about a \r\n            test case or fixture.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct the attribute\r\n            </summary>\r\n            <param name=\"description\">Text describing the test</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.DescriptionAttribute.Description\">\r\n            <summary>\r\n            Gets the test description\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.MessageMatch\">\r\n            <summary>\r\n            Enumeration indicating how the expected message parameter is to be used\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.MessageMatch.Exact\">\r\n            Expect an exact match\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.MessageMatch.Contains\">\r\n            Expect a message containing the parameter string\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.MessageMatch.Regex\">\r\n            Match the regular expression provided as a parameter\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.MessageMatch.StartsWith\">\r\n            Expect a message that starts with the parameter string\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ExpectedExceptionAttribute\">\r\n            <summary>\r\n            ExpectedExceptionAttribute\r\n            </summary>\r\n            \r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ExpectedExceptionAttribute.#ctor\">\r\n            <summary>\r\n            Constructor for a non-specific exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Constructor for a given type of exception\r\n            </summary>\r\n            <param name=\"exceptionType\">The type of the expected exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructor for a given exception name\r\n            </summary>\r\n            <param name=\"exceptionName\">The full name of the expected exception</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException\">\r\n            <summary>\r\n            Gets or sets the expected exception type\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName\">\r\n            <summary>\r\n            Gets or sets the full Type name of the expected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage\">\r\n            <summary>\r\n            Gets or sets the expected message text\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage\">\r\n            <summary>\r\n            Gets or sets the user message displayed in case of failure\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.MatchType\">\r\n            <summary>\r\n             Gets or sets the type of match to be performed on the expected message\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExpectedExceptionAttribute.Handler\">\r\n            <summary>\r\n             Gets the name of a method to be used as an exception handler\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ExplicitAttribute\">\r\n            <summary>\r\n            ExplicitAttribute marks a test or test fixture so that it will\r\n            only be run if explicitly executed from the gui or command line\r\n            or if it is included by use of a filter. The test will not be\r\n            run simply because an enclosing suite is run.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ExplicitAttribute.#ctor\">\r\n            <summary>\r\n            Default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructor with a reason\r\n            </summary>\r\n            <param name=\"reason\">The reason test is marked explicit</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ExplicitAttribute.Reason\">\r\n            <summary>\r\n            The reason test is marked explicit\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.IgnoreAttribute\">\r\n            <summary>\r\n            Attribute used to mark a test that is to be ignored.\r\n            Ignored tests result in a warning message when the\r\n            tests are run.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IgnoreAttribute.#ctor\">\r\n            <summary>\r\n            Constructs the attribute without giving a reason \r\n            for ignoring the test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructs the attribute giving a reason for ignoring the test\r\n            </summary>\r\n            <param name=\"reason\">The reason for ignoring the test</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.IgnoreAttribute.Reason\">\r\n            <summary>\r\n            The reason for ignoring a test\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.IncludeExcludeAttribute\">\r\n            <summary>\r\n            Abstract base for Attributes that are used to include tests\r\n            in the test run based on environmental settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IncludeExcludeAttribute.#ctor\">\r\n            <summary>\r\n            Constructor with no included items specified, for use\r\n            with named property syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructor taking one or more included items\r\n            </summary>\r\n            <param name=\"include\">Comma-delimited list of included items</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.IncludeExcludeAttribute.Include\">\r\n            <summary>\r\n            Name of the item that is needed in order for\r\n            a test to run. Multiple itemss may be given,\r\n            separated by a comma.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.IncludeExcludeAttribute.Exclude\">\r\n            <summary>\r\n            Name of the item to be excluded. Multiple items\r\n            may be given, separated by a comma.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.IncludeExcludeAttribute.Reason\">\r\n            <summary>\r\n            The reason for including or excluding the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.PlatformAttribute\">\r\n            <summary>\r\n            PlatformAttribute is used to mark a test fixture or an\r\n            individual method as applying to a particular platform only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PlatformAttribute.#ctor\">\r\n            <summary>\r\n            Constructor with no platforms specified, for use\r\n            with named property syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PlatformAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructor taking one or more platforms\r\n            </summary>\r\n            <param name=\"platforms\">Comma-deliminted list of platforms</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.CultureAttribute\">\r\n            <summary>\r\n            CultureAttribute is used to mark a test fixture or an\r\n            individual method as applying to a particular Culture only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CultureAttribute.#ctor\">\r\n            <summary>\r\n            Constructor with no cultures specified, for use\r\n            with named property syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CultureAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Constructor taking one or more cultures\r\n            </summary>\r\n            <param name=\"cultures\">Comma-deliminted list of cultures</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.CombinatorialAttribute\">\r\n            <summary>\r\n            Marks a test to use a combinatorial join of any argument data \r\n            provided. NUnit will create a test case for every combination of \r\n            the arguments provided. This can result in a large number of test\r\n            cases and so should be used judiciously. This is the default join\r\n            type, so the attribute need not be used except as documentation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.PropertyAttribute\">\r\n            <summary>\r\n            PropertyAttribute is used to attach information to a test as a name/value pair..\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)\">\r\n            <summary>\r\n            Construct a PropertyAttribute with a name and string value\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property</param>\r\n            <param name=\"propertyValue\">The property value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)\">\r\n            <summary>\r\n            Construct a PropertyAttribute with a name and int value\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property</param>\r\n            <param name=\"propertyValue\">The property value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)\">\r\n            <summary>\r\n            Construct a PropertyAttribute with a name and double value\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property</param>\r\n            <param name=\"propertyValue\">The property value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PropertyAttribute.#ctor\">\r\n            <summary>\r\n            Constructor for derived classes that set the\r\n            property dictionary directly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Constructor for use by derived classes that use the\r\n            name of the type as the property name. Derived classes\r\n            must ensure that the Type of the property value is\r\n            a standard type supported by the BCL. Any custom\r\n            types will cause a serialization Exception when\r\n            in the client.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.PropertyAttribute.Properties\">\r\n            <summary>\r\n            Gets the property dictionary for this attribute\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CombinatorialAttribute.#ctor\">\r\n            <summary>\r\n            Default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.PairwiseAttribute\">\r\n            <summary>\r\n            Marks a test to use pairwise join of any argument data provided. \r\n            NUnit will attempt too excercise every pair of argument values at \r\n            least once, using as small a number of test cases as it can. With\r\n            only two arguments, this is the same as a combinatorial join.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.PairwiseAttribute.#ctor\">\r\n            <summary>\r\n            Default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SequentialAttribute\">\r\n            <summary>\r\n            Marks a test to use a sequential join of any argument data\r\n            provided. NUnit will use arguements for each parameter in\r\n            sequence, generating test cases up to the largest number\r\n            of argument values provided and using null for any arguments\r\n            for which it runs out of values. Normally, this should be\r\n            used with the same number of arguments for each parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SequentialAttribute.#ctor\">\r\n            <summary>\r\n            Default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.MaxTimeAttribute\">\r\n            <summary>\r\n            Summary description for MaxTimeAttribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a MaxTimeAttribute, given a time in milliseconds.\r\n            </summary>\r\n            <param name=\"milliseconds\">The maximum elapsed time in milliseconds</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RandomAttribute\">\r\n            <summary>\r\n            RandomAttribute is used to supply a set of random values\r\n            to a single parameter of a parameterized test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ValuesAttribute\">\r\n            <summary>\r\n            ValuesAttribute is used to provide literal arguments for\r\n            an individual parameter of a test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ParameterDataAttribute\">\r\n            <summary>\r\n            Abstract base class for attributes that apply to parameters \r\n            and supply data for the parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Gets the data to be provided to the specified parameter\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.ValuesAttribute.data\">\r\n            <summary>\r\n            The collection of data to be returned. Must\r\n            be set by any derived attribute classes.\r\n            We use an object[] so that the individual\r\n            elements may have their type changed in GetData\r\n            if necessary.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct with one argument\r\n            </summary>\r\n            <param name=\"arg1\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)\">\r\n            <summary>\r\n            Construct with two arguments\r\n            </summary>\r\n            <param name=\"arg1\"></param>\r\n            <param name=\"arg2\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)\">\r\n            <summary>\r\n            Construct with three arguments\r\n            </summary>\r\n            <param name=\"arg1\"></param>\r\n            <param name=\"arg2\"></param>\r\n            <param name=\"arg3\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Construct with an array of arguments\r\n            </summary>\r\n            <param name=\"args\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Get the collection of values to be used as arguments\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a set of doubles from 0.0 to 1.0,\r\n            specifying only the count.\r\n            </summary>\r\n            <param name=\"count\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)\">\r\n            <summary>\r\n            Construct a set of doubles from min to max\r\n            </summary>\r\n            <param name=\"min\"></param>\r\n            <param name=\"max\"></param>\r\n            <param name=\"count\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Construct a set of ints from min to max\r\n            </summary>\r\n            <param name=\"min\"></param>\r\n            <param name=\"max\"></param>\r\n            <param name=\"count\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Get the collection of values to be used as arguments\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RangeAttribute\">\r\n            <summary>\r\n            RangeAttribute is used to supply a range of values to an\r\n            individual parameter of a parameterized test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Construct a range of ints using default step of 1\r\n            </summary>\r\n            <param name=\"from\"></param>\r\n            <param name=\"to\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Construct a range of ints specifying the step size \r\n            </summary>\r\n            <param name=\"from\"></param>\r\n            <param name=\"to\"></param>\r\n            <param name=\"step\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)\">\r\n            <summary>\r\n            Construct a range of longs\r\n            </summary>\r\n            <param name=\"from\"></param>\r\n            <param name=\"to\"></param>\r\n            <param name=\"step\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)\">\r\n            <summary>\r\n            Construct a range of doubles\r\n            </summary>\r\n            <param name=\"from\"></param>\r\n            <param name=\"to\"></param>\r\n            <param name=\"step\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)\">\r\n            <summary>\r\n            Construct a range of floats\r\n            </summary>\r\n            <param name=\"from\"></param>\r\n            <param name=\"to\"></param>\r\n            <param name=\"step\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RepeatAttribute\">\r\n            <summary>\r\n            RepeatAttribute may be applied to test case in order\r\n            to run it multiple times.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a RepeatAttribute\r\n            </summary>\r\n            <param name=\"count\">The number of times to run the test</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RequiredAddinAttribute\">\r\n            <summary>\r\n            RequiredAddinAttribute may be used to indicate the names of any addins\r\n            that must be present in order to run some or all of the tests in an\r\n            assembly. If the addin is not loaded, the entire assembly is marked\r\n            as NotRunnable.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:RequiredAddinAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"requiredAddin\">The required addin.</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin\">\r\n            <summary>\r\n            Gets the name of required addin.\r\n            </summary>\r\n            <value>The required addin name.</value>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SetCultureAttribute\">\r\n            <summary>\r\n            Summary description for SetCultureAttribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct given the name of a culture\r\n            </summary>\r\n            <param name=\"culture\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SetUICultureAttribute\">\r\n            <summary>\r\n            Summary description for SetUICultureAttribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct given the name of a culture\r\n            </summary>\r\n            <param name=\"culture\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SetUpAttribute\">\r\n            <summary>\r\n            SetUpAttribute is used in a TestFixture to identify a method\r\n            that is called immediately before each test is run. It is \r\n            also used in a SetUpFixture to identify the method that is\r\n            called once, before any of the subordinate tests are run.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SetUpFixtureAttribute\">\r\n            <summary>\r\n            Attribute used to mark a class that contains one-time SetUp \r\n            and/or TearDown methods that apply to all the tests in a\r\n            namespace or an assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SuiteAttribute\">\r\n            <summary>\r\n            Attribute used to mark a static (shared in VB) property\r\n            that returns a list of tests.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TearDownAttribute\">\r\n            <summary>\r\n            Attribute used in a TestFixture to identify a method that is \r\n            called immediately after each test is run. It is also used\r\n            in a SetUpFixture to identify the method that is called once,\r\n            after all subordinate tests have run. In either case, the method \r\n            is guaranteed to be called, even if an exception is thrown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestActionAttribute\">\r\n            <summary>\r\n            Provide actions to execute before and after tests.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ITestAction\">\r\n            <summary>\r\n            When implemented by an attribute, this interface implemented to provide actions to execute before and after tests.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ITestAction.BeforeTest(NUnit.Framework.TestDetails)\">\r\n            <summary>\r\n            Executed before each test is run\r\n            </summary>\r\n            <param name=\"testDetails\">Provides details about the test that is going to be run.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ITestAction.AfterTest(NUnit.Framework.TestDetails)\">\r\n            <summary>\r\n            Executed after each test is run\r\n            </summary>\r\n            <param name=\"testDetails\">Provides details about the test that has just been run.</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestAction.Targets\">\r\n            <summary>\r\n            Provides the target for the action attribute\r\n            </summary>\r\n            <returns>The target for the action attribute</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestAttribute\">\r\n            <summary>\r\n            Adding this attribute to a method within a <seealso cref=\"T:NUnit.Framework.TestFixtureAttribute\"/> \r\n            class makes the method callable from the NUnit test runner. There is a property \r\n            called Description which is optional which you can provide a more detailed test\r\n            description. This class cannot be inherited.\r\n            </summary>\r\n            \r\n            <example>\r\n            [TestFixture]\r\n            public class Fixture\r\n            {\r\n              [Test]\r\n              public void MethodToTest()\r\n              {}\r\n              \r\n              [Test(Description = \"more detailed description\")]\r\n              publc void TestDescriptionMethod()\r\n              {}\r\n            }\r\n            </example>\r\n            \r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestAttribute.Description\">\r\n            <summary>\r\n            Descriptive text for this test\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestCaseAttribute\">\r\n            <summary>\r\n            TestCaseAttribute is used to mark parameterized test cases\r\n            and provide them with their arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ITestCaseData\">\r\n            <summary>\r\n            The ITestCaseData interface is implemented by a class\r\n            that is able to return complete testcases for use by\r\n            a parameterized test method.\r\n            \r\n            NOTE: This interface is used in both the framework\r\n            and the core, even though that results in two different\r\n            types. However, sharing the source code guarantees that\r\n            the various implementations will be compatible and that\r\n            the core is able to reflect successfully over the\r\n            framework implementations of ITestCaseData.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.Arguments\">\r\n            <summary>\r\n            Gets the argument list to be provided to the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.Result\">\r\n            <summary>\r\n            Gets the expected result\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.HasExpectedResult\">\r\n            <summary>\r\n            Indicates whether a result has been specified.\r\n            This is necessary because the result may be\r\n            null, so it's value cannot be checked.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.ExpectedException\">\r\n            <summary>\r\n             Gets the expected exception Type\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.ExpectedExceptionName\">\r\n            <summary>\r\n            Gets the FullName of the expected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.TestName\">\r\n            <summary>\r\n            Gets the name to be used for the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.Description\">\r\n            <summary>\r\n            Gets the description of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:NUnit.Framework.ITestCaseData\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.Explicit\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:NUnit.Framework.ITestCaseData\"/> is explicit.\r\n            </summary>\r\n            <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ITestCaseData.IgnoreReason\">\r\n            <summary>\r\n            Gets the ignore reason.\r\n            </summary>\r\n            <value>The ignore reason.</value>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Construct a TestCaseAttribute with a list of arguments.\r\n            This constructor is not CLS-Compliant\r\n            </summary>\r\n            <param name=\"arguments\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct a TestCaseAttribute with a single argument\r\n            </summary>\r\n            <param name=\"arg\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)\">\r\n            <summary>\r\n            Construct a TestCaseAttribute with a two arguments\r\n            </summary>\r\n            <param name=\"arg1\"></param>\r\n            <param name=\"arg2\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)\">\r\n            <summary>\r\n            Construct a TestCaseAttribute with a three arguments\r\n            </summary>\r\n            <param name=\"arg1\"></param>\r\n            <param name=\"arg2\"></param>\r\n            <param name=\"arg3\"></param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Arguments\">\r\n            <summary>\r\n            Gets the list of arguments to a test case\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Result\">\r\n            <summary>\r\n            Gets or sets the expected result.\r\n            </summary>\r\n            <value>The result.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.ExpectedResult\">\r\n            <summary>\r\n            Gets the expected result.\r\n            </summary>\r\n            <value>The result.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.HasExpectedResult\">\r\n            <summary>\r\n            Gets a flag indicating whether an expected\r\n            result has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Categories\">\r\n            <summary>\r\n            Gets a list of categories associated with this test;\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Category\">\r\n            <summary>\r\n            Gets or sets the category associated with this test.\r\n            May be a single category or a comma-separated list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.ExpectedException\">\r\n            <summary>\r\n            Gets or sets the expected exception.\r\n            </summary>\r\n            <value>The expected exception.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName\">\r\n            <summary>\r\n            Gets or sets the name the expected exception.\r\n            </summary>\r\n            <value>The expected name of the exception.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.ExpectedMessage\">\r\n            <summary>\r\n            Gets or sets the expected message of the expected exception\r\n            </summary>\r\n            <value>The expected message of the exception.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.MatchType\">\r\n            <summary>\r\n             Gets or sets the type of match to be performed on the expected message\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.TestName\">\r\n            <summary>\r\n            Gets or sets the name of the test.\r\n            </summary>\r\n            <value>The name of the test.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Ignore\">\r\n            <summary>\r\n            Gets or sets the ignored status of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Ignored\">\r\n            <summary>\r\n            Gets or sets the ignored status of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Explicit\">\r\n            <summary>\r\n            Gets or sets the explicit status of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.Reason\">\r\n            <summary>\r\n            Gets or sets the reason for not running the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseAttribute.IgnoreReason\">\r\n            <summary>\r\n            Gets or sets the reason for not running the test.\r\n            Set has the side effect of marking the test as ignored.\r\n            </summary>\r\n            <value>The ignore reason.</value>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestCaseSourceAttribute\">\r\n            <summary>\r\n            FactoryAttribute indicates the source to be used to\r\n            provide test cases for a test method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct with the name of the factory - for use with languages\r\n            that don't support params arrays.\r\n            </summary>\r\n            <param name=\"sourceName\">An array of the names of the factories that will provide data</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)\">\r\n            <summary>\r\n            Construct with a Type and name - for use with languages\r\n            that don't support params arrays.\r\n            </summary>\r\n            <param name=\"sourceType\">The Type that will provide data</param>\r\n            <param name=\"sourceName\">The name of the method, property or field that will provide data</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseSourceAttribute.SourceName\">\r\n            <summary>\r\n            The name of a the method, property or fiend to be used as a source\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseSourceAttribute.SourceType\">\r\n            <summary>\r\n            A Type to be used as a source\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseSourceAttribute.Category\">\r\n            <summary>\r\n            Gets or sets the category associated with this test.\r\n            May be a single category or a comma-separated list.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestFixtureAttribute\">\r\n            <example>\r\n            [TestFixture]\r\n            public class ExampleClass \r\n            {}\r\n            </example>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestFixtureAttribute.#ctor\">\r\n            <summary>\r\n            Default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])\">\r\n            <summary>\r\n            Construct with a object[] representing a set of arguments. \r\n            In .NET 2.0, the arguments may later be separated into\r\n            type arguments and constructor arguments.\r\n            </summary>\r\n            <param name=\"arguments\"></param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.Description\">\r\n            <summary>\r\n            Descriptive text for this fixture\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.Category\">\r\n            <summary>\r\n            Gets and sets the category for this fixture.\r\n            May be a comma-separated list of categories.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.Categories\">\r\n            <summary>\r\n            Gets a list of categories for this fixture\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.Arguments\">\r\n            <summary>\r\n            The arguments originally provided to the attribute\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.Ignore\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:NUnit.Framework.TestFixtureAttribute\"/> should be ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.IgnoreReason\">\r\n            <summary>\r\n            Gets or sets the ignore reason. May set Ignored as a side effect.\r\n            </summary>\r\n            <value>The ignore reason.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestFixtureAttribute.TypeArgs\">\r\n            <summary>\r\n            Get or set the type arguments. If not set\r\n            explicitly, any leading arguments that are\r\n            Types are taken as type arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestFixtureSetUpAttribute\">\r\n            <summary>\r\n            Attribute used to identify a method that is \r\n            called before any tests in a fixture are run.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestFixtureTearDownAttribute\">\r\n            <summary>\r\n            Attribute used to identify a method that is called after\r\n            all the tests in a fixture have run. The method is \r\n            guaranteed to be called, even if an exception is thrown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TheoryAttribute\">\r\n            <summary>\r\n            Adding this attribute to a method within a <seealso cref=\"T:NUnit.Framework.TestFixtureAttribute\"/> \r\n            class makes the method callable from the NUnit test runner. There is a property \r\n            called Description which is optional which you can provide a more detailed test\r\n            description. This class cannot be inherited.\r\n            </summary>\r\n            \r\n            <example>\r\n            [TestFixture]\r\n            public class Fixture\r\n            {\r\n              [Test]\r\n              public void MethodToTest()\r\n              {}\r\n              \r\n              [Test(Description = \"more detailed description\")]\r\n              publc void TestDescriptionMethod()\r\n              {}\r\n            }\r\n            </example>\r\n            \r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TimeoutAttribute\">\r\n            <summary>\r\n            Used on a method, marks the test with a timeout value in milliseconds. \r\n            The test will be run in a separate thread and is cancelled if the timeout \r\n            is exceeded. Used on a method or assembly, sets the default timeout \r\n            for all contained test methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a TimeoutAttribute given a time in milliseconds\r\n            </summary>\r\n            <param name=\"timeout\">The timeout value in milliseconds</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RequiresSTAAttribute\">\r\n            <summary>\r\n            Marks a test that must run in the STA, causing it\r\n            to run in a separate thread if necessary.\r\n            \r\n            On methods, you may also use STAThreadAttribute\r\n            to serve the same purpose.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RequiresSTAAttribute.#ctor\">\r\n            <summary>\r\n            Construct a RequiresSTAAttribute\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RequiresMTAAttribute\">\r\n            <summary>\r\n            Marks a test that must run in the MTA, causing it\r\n            to run in a separate thread if necessary.\r\n            \r\n            On methods, you may also use MTAThreadAttribute\r\n            to serve the same purpose.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RequiresMTAAttribute.#ctor\">\r\n            <summary>\r\n            Construct a RequiresMTAAttribute\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.RequiresThreadAttribute\">\r\n            <summary>\r\n            Marks a test that must run on a separate thread.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RequiresThreadAttribute.#ctor\">\r\n            <summary>\r\n            Construct a RequiresThreadAttribute\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)\">\r\n            <summary>\r\n            Construct a RequiresThreadAttribute, specifying the apartment\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ValueSourceAttribute\">\r\n            <summary>\r\n            ValueSourceAttribute indicates the source to be used to\r\n            provide data for one parameter of a test method.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Construct with the name of the factory - for use with languages\r\n            that don't support params arrays.\r\n            </summary>\r\n            <param name=\"sourceName\">The name of the data source to be used</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)\">\r\n            <summary>\r\n            Construct with a Type and name - for use with languages\r\n            that don't support params arrays.\r\n            </summary>\r\n            <param name=\"sourceType\">The Type that will provide data</param>\r\n            <param name=\"sourceName\">The name of the method, property or field that will provide data</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ValueSourceAttribute.SourceName\">\r\n            <summary>\r\n            The name of a the method, property or fiend to be used as a source\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.ValueSourceAttribute.SourceType\">\r\n            <summary>\r\n            A Type to be used as a source\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AttributeExistsConstraint\">\r\n            <summary>\r\n            AttributeExistsConstraint tests for the presence of a\r\n            specified attribute on  a Type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.Constraint\">\r\n            <summary>\r\n            The Constraint class is the base of all built-in constraints\r\n            within NUnit. It provides the operator overloads used to combine \r\n            constraints.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.IResolveConstraint\">\r\n            <summary>\r\n            The IConstraintExpression interface is implemented by all\r\n            complete and resolvable constraints and expressions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.IResolveConstraint.Resolve\">\r\n            <summary>\r\n            Return the top-level constraint for this expression\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.Constraint.UNSET\">\r\n            <summary>\r\n            Static UnsetObject used to detect derived constraints\r\n            failing to set the actual value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.Constraint.actual\">\r\n            <summary>\r\n            The actual value being tested against a constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.Constraint.displayName\">\r\n            <summary>\r\n            The display name of this Constraint for use by ToString()\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.Constraint.argcnt\">\r\n            <summary>\r\n            Argument fields used by ToString();\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.Constraint.builder\">\r\n            <summary>\r\n            The builder holding this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.#ctor\">\r\n            <summary>\r\n            Construct a constraint with no arguments\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct a constraint with one argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)\">\r\n            <summary>\r\n            Construct a constraint with two arguments\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Sets the ConstraintBuilder holding this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the failure message to the MessageWriter provided\r\n            as an argument. The default implementation simply passes\r\n            the constraint and the actual value to the writer, which\r\n            then displays the constraint description and the value.\r\n            \r\n            Constraints that need to provide additional details,\r\n            such as where the error occured can override this.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter on which to display the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by an\r\n            ActualValueDelegate that returns the value to be tested.\r\n            The default implementation simply evaluates the delegate\r\n            but derived classes may override it to provide for delayed \r\n            processing.\r\n            </summary>\r\n            <param name=\"del\">An ActualValueDelegate</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given reference.\r\n            The default implementation simply dereferences the value but\r\n            derived classes may override it to provide for delayed processing.\r\n            </summary>\r\n            <param name=\"actual\">A reference to the value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.ToString\">\r\n            <summary>\r\n            Default override of ToString returns the constraint DisplayName\r\n            followed by any arguments within angle brackets.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied only if both \r\n            argument constraints are satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if either \r\n            of the argument constraints is satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if the \r\n            argument constraint is not satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.After(System.Int32)\">\r\n            <summary>\r\n            Returns a DelayedConstraint with the specified delay time.\r\n            </summary>\r\n            <param name=\"delayInMilliseconds\">The delay in milliseconds.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Returns a DelayedConstraint with the specified delay time\r\n            and polling interval.\r\n            </summary>\r\n            <param name=\"delayInMilliseconds\">The delay in milliseconds.</param>\r\n            <param name=\"pollingInterval\">The interval at which to test the constraint.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Constraint.DisplayName\">\r\n            <summary>\r\n            The display name of this Constraint for use by ToString().\r\n            The default value is the name of the constraint with\r\n            trailing \"Constraint\" removed. Derived classes may set\r\n            this to another name in their constructors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Constraint.And\">\r\n            <summary>\r\n            Returns a ConstraintExpression by appending And\r\n            to the current constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Constraint.With\">\r\n            <summary>\r\n            Returns a ConstraintExpression by appending And\r\n            to the current constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Constraint.Or\">\r\n            <summary>\r\n            Returns a ConstraintExpression by appending Or\r\n            to the current constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.Constraint.UnsetObject\">\r\n            <summary>\r\n            Class used to detect any derived constraints\r\n            that fail to set the actual value in their\r\n            Matches override.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Constructs an AttributeExistsConstraint for a specific attribute Type\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Tests whether the object provides the expected attribute.\r\n            </summary>\r\n            <param name=\"actual\">A Type, MethodInfo, or other ICustomAttributeProvider</param>\r\n            <returns>True if the expected attribute is present, otherwise false</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Writes the description of the constraint to the specified writer\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AttributeConstraint\">\r\n            <summary>\r\n            AttributeConstraint tests that a specified attribute is present\r\n            on a Type or other provider and that the value of the attribute\r\n            satisfies some other constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PrefixConstraint\">\r\n            <summary>\r\n            Abstract base class used for prefixes\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint\">\r\n            <summary>\r\n            The base constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Construct given a base constraint\r\n            </summary>\r\n            <param name=\"resolvable\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Constructs an AttributeConstraint for a specified attriute\r\n            Type and base constraint.\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n            <param name=\"baseConstraint\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Determines whether the Type or other provider has the \r\n            expected attribute and if its value matches the\r\n            additional constraint specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Writes a description of the attribute to the specified writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Writes the actual value supplied to the specified writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns a string representation of the constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.BasicConstraint\">\r\n            <summary>\r\n            BasicConstraint is the abstract base for constraints that\r\n            perform a simple comparison to a constant value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:BasicConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected.</param>\r\n            <param name=\"description\">The description.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NullConstraint\">\r\n            <summary>\r\n            NullConstraint tests that the actual value is null\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NullConstraint.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:NullConstraint\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.TrueConstraint\">\r\n            <summary>\r\n            TrueConstraint tests that the actual value is true\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.TrueConstraint.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:TrueConstraint\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.FalseConstraint\">\r\n            <summary>\r\n            FalseConstraint tests that the actual value is false\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FalseConstraint.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:FalseConstraint\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NaNConstraint\">\r\n            <summary>\r\n            NaNConstraint tests that the actual value is a double or float NaN\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test that the actual value is an NaN\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a specified writer\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.BinaryConstraint\">\r\n            <summary>\r\n            BinaryConstraint is the abstract base of all constraints\r\n            that combine two other constraints in some fashion.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.BinaryConstraint.left\">\r\n            <summary>\r\n            The first constraint being combined\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.BinaryConstraint.right\">\r\n            <summary>\r\n            The second constraint being combined\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Construct a BinaryConstraint from two other constraints\r\n            </summary>\r\n            <param name=\"left\">The first constraint</param>\r\n            <param name=\"right\">The second constraint</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AndConstraint\">\r\n            <summary>\r\n            AndConstraint succeeds only if both members succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Create an AndConstraint from two other constraints\r\n            </summary>\r\n            <param name=\"left\">The first constraint</param>\r\n            <param name=\"right\">The second constraint</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply both member constraints to an actual value, succeeding \r\n            succeeding only if both of them succeed.\r\n            </summary>\r\n            <param name=\"actual\">The actual value</param>\r\n            <returns>True if the constraints both succeeded</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description for this contraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to receive the description</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.OrConstraint\">\r\n            <summary>\r\n            OrConstraint succeeds if either member succeeds\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Create an OrConstraint from two other constraints\r\n            </summary>\r\n            <param name=\"left\">The first constraint</param>\r\n            <param name=\"right\">The second constraint</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply the member constraints to an actual value, succeeding \r\n            succeeding as soon as one of them succeeds.\r\n            </summary>\r\n            <param name=\"actual\">The actual value</param>\r\n            <returns>True if either constraint succeeded</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description for this contraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to receive the description</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionConstraint\">\r\n            <summary>\r\n            CollectionConstraint is the abstract base class for\r\n            constraints that operate on collections.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionConstraint.#ctor\">\r\n            <summary>\r\n            Construct an empty CollectionConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct a CollectionConstraint\r\n            </summary>\r\n            <param name=\"arg\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Determines whether the specified enumerable is empty.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Protected method to be implemented by derived classes\r\n            </summary>\r\n            <param name=\"collection\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint\">\r\n            <summary>\r\n            CollectionItemsEqualConstraint is the abstract base class for all\r\n            collection constraints that apply some notion of item equality\r\n            as a part of their operation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor\">\r\n            <summary>\r\n            Construct an empty CollectionConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct a CollectionConstraint\r\n            </summary>\r\n            <param name=\"arg\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied Comparison object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)\">\r\n            <summary>\r\n            Compares two collection members for equality\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Return a new CollectionTally for use in making tests\r\n            </summary>\r\n            <param name=\"c\">The collection to be included in the tally</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase\">\r\n            <summary>\r\n            Flag the constraint to ignore case and return self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EmptyCollectionConstraint\">\r\n            <summary>\r\n            EmptyCollectionConstraint tests whether a collection is empty. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Check that the collection is empty\r\n            </summary>\r\n            <param name=\"collection\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.UniqueItemsConstraint\">\r\n            <summary>\r\n            UniqueItemsConstraint tests whether all the items in a \r\n            collection are unique.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Check that all items are unique.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionContainsConstraint\">\r\n            <summary>\r\n            CollectionContainsConstraint is used to test whether a collection\r\n            contains an expected object as a member.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Construct a CollectionContainsConstraint\r\n            </summary>\r\n            <param name=\"expected\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Test whether the expected item is contained in the collection\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a descripton of the constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionEquivalentConstraint\">\r\n            <summary>\r\n            CollectionEquivalentCOnstraint is used to determine whether two\r\n            collections are equivalent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Construct a CollectionEquivalentConstraint\r\n            </summary>\r\n            <param name=\"expected\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Test whether two collections are equivalent\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionSubsetConstraint\">\r\n            <summary>\r\n            CollectionSubsetConstraint is used to determine whether\r\n            one collection is a subset of another\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Construct a CollectionSubsetConstraint\r\n            </summary>\r\n            <param name=\"expected\">The collection that the actual value is expected to be a subset of</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Test whether the actual collection is a subset of \r\n            the expected collection provided.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionOrderedConstraint\">\r\n            <summary>\r\n            CollectionOrderedConstraint is used to test whether a collection is ordered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor\">\r\n            <summary>\r\n            Construct a CollectionOrderedConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)\">\r\n            <summary>\r\n            Modifies the constraint to use an IComparer and returns self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Modifies the constraint to use an IComparer&lt;T&gt; and returns self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Modifies the constraint to use a Comparison&lt;T&gt; and returns self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)\">\r\n            <summary>\r\n            Modifies the constraint to test ordering by the value of\r\n            a specified property and returns self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Test whether the collection is ordered\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of the constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of the constraint.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending\">\r\n            <summary>\r\n             If used performs a reverse comparison\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionTally\">\r\n            <summary>\r\n            CollectionTally counts (tallies) the number of\r\n            occurences of each object in one or more enumerations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Construct a CollectionTally object from a comparer and a collection\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)\">\r\n            <summary>\r\n            Try to remove an object from the tally\r\n            </summary>\r\n            <param name=\"o\">The object to remove</param>\r\n            <returns>True if successful, false if the object was not found</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Try to remove a set of objects from the tally\r\n            </summary>\r\n            <param name=\"c\">The objects to remove</param>\r\n            <returns>True if successful, false if any object was not found</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.CollectionTally.Count\">\r\n            <summary>\r\n            The number of objects remaining in the tally\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ComparisonAdapter\">\r\n            <summary>\r\n            ComparisonAdapter class centralizes all comparisons of\r\n            values in NUnit, adapting to the use of any provided\r\n            IComparer, IComparer&lt;T&gt; or Comparison&lt;T&gt;\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)\">\r\n            <summary>\r\n            Returns a ComparisonAdapter that wraps an IComparer\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Returns a ComparisonAdapter that wraps an IComparer&lt;T&gt;\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Returns a ComparisonAdapter that wraps a Comparison&lt;T&gt;\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compares two objects\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ComparisonAdapter.Default\">\r\n            <summary>\r\n            Gets the default ComparisonAdapter, which wraps an\r\n            NUnitComparer object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)\">\r\n            <summary>\r\n            Construct a ComparisonAdapter for an IComparer\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compares two objects\r\n            </summary>\r\n            <param name=\"expected\"></param>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor\">\r\n            <summary>\r\n            Construct a default ComparisonAdapter\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1\">\r\n            <summary>\r\n            ComparisonAdapter&lt;T&gt; extends ComparisonAdapter and\r\n            allows use of an IComparer&lt;T&gt; or Comparison&lt;T&gt;\r\n            to actually perform the comparison.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})\">\r\n            <summary>\r\n            Construct a ComparisonAdapter for an IComparer&lt;T&gt;\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compare a Type T to an object\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})\">\r\n            <summary>\r\n            Construct a ComparisonAdapter for a Comparison&lt;T&gt;\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compare a Type T to an object\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ComparisonConstraint\">\r\n            <summary>\r\n            Abstract base class for constraints that compare values to\r\n            determine if one is greater than, equal to or less than\r\n            the other. This class supplies the Using modifiers.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ComparisonConstraint.comparer\">\r\n            <summary>\r\n            ComparisonAdapter to be used in making the comparison\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ComparisonConstraint\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ComparisonConstraint\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)\">\r\n            <summary>\r\n            Modifies the constraint to use an IComparer and returns self\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Modifies the constraint to use an IComparer&lt;T&gt; and returns self\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Modifies the constraint to use a Comparison&lt;T&gt; and returns self\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ActualValueDelegate\">\r\n            <summary>\r\n            Delegate used to delay evaluation of the actual value\r\n            to be used in evaluating a constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintBuilder\">\r\n            <summary>\r\n            ConstraintBuilder maintains the stacks that are used in\r\n            processing a ConstraintExpression. An OperatorStack\r\n            is used to hold operators that are waiting for their\r\n            operands to be reognized. a ConstraintStack holds \r\n            input constraints as well as the results of each\r\n            operator applied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintBuilder\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)\">\r\n            <summary>\r\n            Appends the specified operator to the expression by first\r\n            reducing the operator stack and then pushing the new\r\n            operator on the stack.\r\n            </summary>\r\n            <param name=\"op\">The operator to push.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Appends the specified constraint to the expresson by pushing\r\n            it on the constraint stack.\r\n            </summary>\r\n            <param name=\"constraint\">The constraint to push.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)\">\r\n            <summary>\r\n            Sets the top operator right context.\r\n            </summary>\r\n            <param name=\"rightContext\">The right context.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)\">\r\n            <summary>\r\n            Reduces the operator stack until the topmost item\r\n            precedence is greater than or equal to the target precedence.\r\n            </summary>\r\n            <param name=\"targetPrecedence\">The target precedence.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve\">\r\n            <summary>\r\n            Resolves this instance, returning a Constraint. If the builder\r\n            is not currently in a resolvable state, an exception is thrown.\r\n            </summary>\r\n            <returns>The resolved constraint</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable\">\r\n            <summary>\r\n            Gets a value indicating whether this instance is resolvable.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is resolvable; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack\">\r\n            <summary>\r\n            OperatorStack is a type-safe stack for holding ConstraintOperators\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:OperatorStack\"/> class.\r\n            </summary>\r\n            <param name=\"builder\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)\">\r\n            <summary>\r\n            Pushes the specified operator onto the stack.\r\n            </summary>\r\n            <param name=\"op\">The op.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop\">\r\n            <summary>\r\n            Pops the topmost operator from the stack.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:OpStack\"/> is empty.\r\n            </summary>\r\n            <value><c>true</c> if empty; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top\">\r\n            <summary>\r\n            Gets the topmost operator without modifying the stack.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack\">\r\n            <summary>\r\n            ConstraintStack is a type-safe stack for holding Constraints\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintStack\"/> class.\r\n            </summary>\r\n            <param name=\"builder\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Pushes the specified constraint. As a side effect,\r\n            the constraint's builder field is set to the \r\n            ConstraintBuilder owning this stack.\r\n            </summary>\r\n            <param name=\"constraint\">The constraint.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop\">\r\n            <summary>\r\n            Pops this topmost constrait from the stack.\r\n            As a side effect, the constraint's builder\r\n            field is set to null.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:ConstraintStack\"/> is empty.\r\n            </summary>\r\n            <value><c>true</c> if empty; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top\">\r\n            <summary>\r\n            Gets the topmost constraint without modifying the stack.\r\n            </summary>\r\n            <value>The topmost constraint</value>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintExpression\">\r\n            <summary>\r\n            ConstraintExpression represents a compound constraint in the \r\n            process of being constructed from a series of syntactic elements.\r\n            \r\n            Individual elements are appended to the expression as they are\r\n            reognized. Once an actual Constraint is appended, the expression\r\n            returns a resolvable Constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintExpressionBase\">\r\n            <summary>\r\n            ConstraintExpressionBase is the abstract base class for the \r\n            ConstraintExpression class, which represents a \r\n            compound constraint in the process of being constructed \r\n            from a series of syntactic elements.\r\n            \r\n            NOTE: ConstraintExpressionBase is separate because the\r\n            ConstraintExpression class was generated in earlier\r\n            versions of NUnit. The two classes may be combined\r\n            in a future version.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder\">\r\n            <summary>\r\n            The ConstraintBuilder holding the elements recognized so far\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintExpressionBase\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintExpressionBase\"/> \r\n            class passing in a ConstraintBuilder, which may be pre-populated.\r\n            </summary>\r\n            <param name=\"builder\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString\">\r\n            <summary>\r\n            Returns a string representation of the expression as it\r\n            currently stands. This should only be used for testing,\r\n            since it has the side-effect of resolving the expression.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)\">\r\n            <summary>\r\n            Appends an operator to the expression and returns the\r\n            resulting expression itself.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)\">\r\n            <summary>\r\n            Appends a self-resolving operator to the expression and\r\n            returns a new ResolvableConstraintExpression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Appends a constraint to the expression and returns that\r\n            constraint, which is associated with the current state\r\n            of the expression being built.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintExpression\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ConstraintExpression\"/> \r\n            class passing in a ConstraintBuilder, which may be pre-populated.\r\n            </summary>\r\n            <param name=\"builder\">The builder.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Exactly(System.Int32)\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding only if a specified number of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)\">\r\n            <summary>\r\n            Returns a new PropertyConstraintExpression, which will either\r\n            test for the existence of the named property on the object\r\n            being tested or apply any following constraint to that property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns the constraint provided as an argument - used to allow custom\r\n            custom constraints to easily participate in the syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})\">\r\n            <summary>\r\n            Returns the constraint provided as an argument - used to allow custom\r\n            custom constraints to easily participate in the syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests two items for equality\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests that two references are the same object\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a collection containing the same elements as the \r\n            collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a subset of the collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)\">\r\n            <summary>\r\n            Returns a new CollectionContainsConstraint checking for the\r\n            presence of a particular object in the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)\">\r\n            <summary>\r\n            Returns a new CollectionContainsConstraint checking for the\r\n            presence of a particular object in the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)\">\r\n            <summary>\r\n            Returns a new ContainsConstraint. This constraint\r\n            will, in turn, make use of the appropriate second-level\r\n            constraint, depending on the type of the actual argument. \r\n            This overload is only used if the item sought is a string,\r\n            since any other type implies that we are looking for a \r\n            collection member.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same as an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.SubPath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintExpression.InRange``1(``0,``0)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value falls \r\n            within a specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Not\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.No\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.All\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Some\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if at least one of them succeeds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.None\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them fail.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Length\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Length property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Count\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Count property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Message\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Message property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.InnerException\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the InnerException property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.With\">\r\n            <summary>\r\n            With is currently a NOP - reserved for future use.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Null\">\r\n            <summary>\r\n            Returns a constraint that tests for null\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.True\">\r\n            <summary>\r\n            Returns a constraint that tests for True\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.False\">\r\n            <summary>\r\n            Returns a constraint that tests for False\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Positive\">\r\n            <summary>\r\n            Returns a constraint that tests for a positive value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Negative\">\r\n            <summary>\r\n            Returns a constraint that tests for a negative value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.NaN\">\r\n            <summary>\r\n            Returns a constraint that tests for NaN\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Empty\">\r\n            <summary>\r\n            Returns a constraint that tests for empty\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Unique\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection \r\n            contains all unique items.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in binary format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in xml format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintExpression.Ordered\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection is ordered\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintFactory\">\r\n            <summary>\r\n            Helper class with properties and methods that supply\r\n            a number of constraints used in Asserts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Exactly(System.Int32)\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding only if a specified number of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)\">\r\n            <summary>\r\n            Returns a new PropertyConstraintExpression, which will either\r\n            test for the existence of the named property on the object\r\n            being tested or apply any following constraint to that property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests two items for equality\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests that two references are the same object\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a collection containing the same elements as the \r\n            collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a subset of the collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)\">\r\n            <summary>\r\n            Returns a new CollectionContainsConstraint checking for the\r\n            presence of a particular object in the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)\">\r\n            <summary>\r\n            Returns a new CollectionContainsConstraint checking for the\r\n            presence of a particular object in the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)\">\r\n            <summary>\r\n            Returns a new ContainsConstraint. This constraint\r\n            will, in turn, make use of the appropriate second-level\r\n            constraint, depending on the type of the actual argument. \r\n            This overload is only used if the item sought is a string,\r\n            since any other type implies that we are looking for a \r\n            collection member.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value matches the pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same as an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.SubPath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintFactory.InRange``1(``0,``0)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value falls \r\n            within a specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Not\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.No\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.All\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Some\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if at least one of them succeeds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.None\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them fail.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Length\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Length property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Count\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Count property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Message\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Message property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.InnerException\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the InnerException property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Null\">\r\n            <summary>\r\n            Returns a constraint that tests for null\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.True\">\r\n            <summary>\r\n            Returns a constraint that tests for True\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.False\">\r\n            <summary>\r\n            Returns a constraint that tests for False\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Positive\">\r\n            <summary>\r\n            Returns a constraint that tests for a positive value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Negative\">\r\n            <summary>\r\n            Returns a constraint that tests for a negative value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.NaN\">\r\n            <summary>\r\n            Returns a constraint that tests for NaN\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Empty\">\r\n            <summary>\r\n            Returns a constraint that tests for empty\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Unique\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection \r\n            contains all unique items.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in binary format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in xml format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintFactory.Ordered\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection is ordered\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ConstraintOperator\">\r\n            <summary>\r\n            The ConstraintOperator class is used internally by a\r\n            ConstraintBuilder to represent an operator that \r\n            modifies or combines constraints. \r\n            \r\n            Constraint operators use left and right precedence\r\n            values to determine whether the top operator on the\r\n            stack should be reduced before pushing a new operator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence\">\r\n            <summary>\r\n            The precedence value used when the operator\r\n            is about to be pushed to the stack.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence\">\r\n            <summary>\r\n            The precedence value used when the operator\r\n            is on the top of the stack.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n            <param name=\"stack\"></param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext\">\r\n            <summary>\r\n            The syntax element preceding this operator\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintOperator.RightContext\">\r\n            <summary>\r\n            The syntax element folowing this operator\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence\">\r\n            <summary>\r\n            The precedence value used when the operator\r\n            is about to be pushed to the stack.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence\">\r\n            <summary>\r\n            The precedence value used when the operator\r\n            is on the top of the stack.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PrefixOperator\">\r\n            <summary>\r\n            PrefixOperator takes a single constraint and modifies\r\n            it's action in some way.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n            <param name=\"stack\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns the constraint created by applying this\r\n            prefix to another constraint.\r\n            </summary>\r\n            <param name=\"constraint\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NotOperator\">\r\n            <summary>\r\n            Negates the test of the constraint it wraps.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotOperator.#ctor\">\r\n            <summary>\r\n            Constructs a new NotOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a NotConstraint applied to its argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.CollectionOperator\">\r\n            <summary>\r\n            Abstract base for operators that indicate how to\r\n            apply a constraint to items in a collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.CollectionOperator.#ctor\">\r\n            <summary>\r\n            Constructs a CollectionOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AllOperator\">\r\n            <summary>\r\n            Represents a constraint that succeeds if all the \r\n            members of a collection match a base constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a constraint that will apply the argument\r\n            to the members of a collection, succeeding if\r\n            they all succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SomeOperator\">\r\n            <summary>\r\n            Represents a constraint that succeeds if any of the \r\n            members of a collection match a base constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a constraint that will apply the argument\r\n            to the members of a collection, succeeding if\r\n            any of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NoneOperator\">\r\n            <summary>\r\n            Represents a constraint that succeeds if none of the \r\n            members of a collection match a base constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a constraint that will apply the argument\r\n            to the members of a collection, succeeding if\r\n            none of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ExactCountOperator\">\r\n            <summary>\r\n            Represents a constraint that succeeds if the specified \r\n            count of members of a collection match a base constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactCountOperator.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct an ExactCountOperator for a specified count\r\n            </summary>\r\n            <param name=\"expectedCount\">The expected count</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactCountOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a constraint that will apply the argument\r\n            to the members of a collection, succeeding if\r\n            none of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.WithOperator\">\r\n            <summary>\r\n            Represents a constraint that simply wraps the\r\n            constraint provided as an argument, without any\r\n            further functionality, but which modifes the\r\n            order of evaluation because of its precedence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.WithOperator.#ctor\">\r\n            <summary>\r\n            Constructor for the WithOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Returns a constraint that wraps its argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SelfResolvingOperator\">\r\n            <summary>\r\n            Abstract base class for operators that are able to reduce to a \r\n            constraint whether or not another syntactic element follows.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PropOperator\">\r\n            <summary>\r\n            Operator used to test for the presence of a named Property\r\n            on an object and optionally apply further tests to the\r\n            value of that property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)\">\r\n            <summary>\r\n            Constructs a PropOperator for a particular named property\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n            <param name=\"stack\"></param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.PropOperator.Name\">\r\n            <summary>\r\n            Gets the name of the property to which the operator applies\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AttributeOperator\">\r\n            <summary>\r\n            Operator that tests for the presence of a particular attribute\r\n            on a type and optionally applies further tests to the attribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct an AttributeOperator for a particular Type\r\n            </summary>\r\n            <param name=\"type\">The Type of attribute tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ThrowsOperator\">\r\n            <summary>\r\n            Operator that tests that an exception is thrown and\r\n            optionally applies further tests to the exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsOperator.#ctor\">\r\n            <summary>\r\n            Construct a ThrowsOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.BinaryOperator\">\r\n            <summary>\r\n            Abstract base class for all binary operators\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)\">\r\n            <summary>\r\n            Reduce produces a constraint from the operator and \r\n            any arguments. It takes the arguments from the constraint \r\n            stack and pushes the resulting constraint on it.\r\n            </summary>\r\n            <param name=\"stack\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Abstract method that produces a constraint by applying\r\n            the operator to its left and right constraint arguments.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence\">\r\n            <summary>\r\n            Gets the left precedence of the operator\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence\">\r\n            <summary>\r\n            Gets the right precedence of the operator\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AndOperator\">\r\n            <summary>\r\n            Operator that requires both it's arguments to succeed\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndOperator.#ctor\">\r\n            <summary>\r\n            Construct an AndOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Apply the operator to produce an AndConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.OrOperator\">\r\n            <summary>\r\n            Operator that requires at least one of it's arguments to succeed\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.OrOperator.#ctor\">\r\n            <summary>\r\n            Construct an OrOperator\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Apply the operator to produce an OrConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ContainsConstraint\">\r\n            <summary>\r\n            ContainsConstraint tests a whether a string contains a substring\r\n            or a collection contains an object. It postpones the decision of\r\n            which test to use until the type of the actual argument is known.\r\n            This allows testing whether a string is contained in a collection\r\n            or as a substring of another string using the same syntax.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ContainsConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied Comparison object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IEqualityComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase\">\r\n            <summary>\r\n            Flag the constraint to ignore case and return self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.DelayedConstraint\">\r\n            <summary>\r\n             Applies a delay to the match so that a match can be evaluated in the future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)\">\r\n            <summary>\r\n             Creates a new DelayedConstraint\r\n            </summary>\r\n            <param name=\"baseConstraint\">The inner constraint two decorate</param>\r\n            <param name=\"delayInMilliseconds\">The time interval after which the match is performed</param>\r\n            <exception cref=\"T:System.InvalidOperationException\">If the value of <paramref name=\"delayInMilliseconds\"/> is less than 0</exception>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)\">\r\n            <summary>\r\n             Creates a new DelayedConstraint\r\n            </summary>\r\n            <param name=\"baseConstraint\">The inner constraint two decorate</param>\r\n            <param name=\"delayInMilliseconds\">The time interval after which the match is performed</param>\r\n            <param name=\"pollingInterval\">The time interval used for polling</param>\r\n            <exception cref=\"T:System.InvalidOperationException\">If the value of <paramref name=\"delayInMilliseconds\"/> is less than 0</exception>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for if the base constraint fails, false if it succeeds</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a delegate\r\n            </summary>\r\n            <param name=\"del\">The delegate whose value is to be tested</param>\r\n            <returns>True for if the base constraint fails, false if it succeeds</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given reference.\r\n            Overridden to wait for the specified delay period before\r\n            calling the base constraint with the dereferenced value.\r\n            </summary>\r\n            <param name=\"actual\">A reference to the value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a MessageWriter.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of the constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EmptyDirectoryContraint\">\r\n            <summary>\r\n            EmptyDirectoryConstraint is used to test that a directory is empty\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyDirectoryContraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EmptyConstraint\">\r\n            <summary>\r\n            EmptyConstraint tests a whether a string or collection is empty,\r\n            postponing the decision about which test is applied until the\r\n            type of the actual argument is known.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EqualConstraint\">\r\n            <summary>\r\n            EqualConstraint is able to compare an actual value with the\r\n            expected value provided in its constructor. Two objects are \r\n            considered equal if both are null, or if both have the same \r\n            value. NUnit has special semantics for some object types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.EqualConstraint.clipStrings\">\r\n            <summary>\r\n            If true, strings in error messages will be clipped\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.EqualConstraint.comparer\">\r\n            <summary>\r\n            NUnitEqualityComparer used to test equality.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:NUnit.Framework.Constraints.EqualConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)\">\r\n            <summary>\r\n            Flag the constraint to use a tolerance when determining equality.\r\n            </summary>\r\n            <param name=\"amount\">Tolerance value to be used</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied Comparison object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Flag the constraint to use the supplied IEqualityComparer object.\r\n            </summary>\r\n            <param name=\"comparer\">The IComparer object to use.</param>\r\n            <returns>Self.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a failure message. Overridden to provide custom \r\n            failure messages for EqualConstraint.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to write to</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write description of this constraint\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to write to</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)\">\r\n            <summary>\r\n            Display the failure information for two collections that did not match.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter on which to display</param>\r\n            <param name=\"expected\">The expected collection.</param>\r\n            <param name=\"actual\">The actual collection</param>\r\n            <param name=\"depth\">The depth of this failure in a set of nested collections</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.DisplayTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)\">\r\n            <summary>\r\n            Displays a single line showing the types and sizes of the expected\r\n            and actual enumerations, collections or arrays. If both are identical, \r\n            the value is only shown once.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter on which to display</param>\r\n            <param name=\"expected\">The expected collection or array</param>\r\n            <param name=\"actual\">The actual collection or array</param>\r\n            <param name=\"indent\">The indentation level for the message line</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint,System.Int32)\">\r\n            <summary>\r\n            Displays a single line showing the point in the expected and actual\r\n            arrays at which the comparison failed. If the arrays have different\r\n            structures or dimensions, both values are shown.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter on which to display</param>\r\n            <param name=\"expected\">The expected array</param>\r\n            <param name=\"actual\">The actual array</param>\r\n            <param name=\"failurePoint\">Index of the failure point in the underlying collections</param>\r\n            <param name=\"indent\">The indentation level for the message line</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualConstraint.DisplayEnumerableDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.IEnumerable,System.Collections.IEnumerable,System.Int32)\">\r\n            <summary>\r\n            Display the failure information for two IEnumerables that did not match.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter on which to display</param>\r\n            <param name=\"expected\">The expected enumeration.</param>\r\n            <param name=\"actual\">The actual enumeration</param>\r\n            <param name=\"depth\">The depth of this failure in a set of nested collections</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase\">\r\n            <summary>\r\n            Flag the constraint to ignore case and return self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.NoClip\">\r\n            <summary>\r\n            Flag the constraint to suppress string clipping \r\n            and return self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.AsCollection\">\r\n            <summary>\r\n            Flag the constraint to compare arrays as collections\r\n            and return self.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Ulps\">\r\n            <summary>\r\n            Switches the .Within() modifier to interpret its tolerance as\r\n            a distance in representable values (see remarks).\r\n            </summary>\r\n            <returns>Self.</returns>\r\n            <remarks>\r\n            Ulp stands for \"unit in the last place\" and describes the minimum\r\n            amount a given value can change. For any integers, an ulp is 1 whole\r\n            digit. For floating point values, the accuracy of which is better\r\n            for smaller numbers and worse for larger numbers, an ulp depends\r\n            on the size of the number. Using ulps for comparison of floating\r\n            point results instead of fixed tolerances is safer because it will\r\n            automatically compensate for the added inaccuracy of larger numbers.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Percent\">\r\n            <summary>\r\n            Switches the .Within() modifier to interpret its tolerance as\r\n            a percentage that the actual values is allowed to deviate from\r\n            the expected value.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Days\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in days.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Hours\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in hours.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Minutes\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in minutes.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Seconds\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in seconds.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in milliseconds.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.EqualConstraint.Ticks\">\r\n            <summary>\r\n            Causes the tolerance to be interpreted as a TimeSpan in clock ticks.\r\n            </summary>\r\n            <returns>Self</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EqualityAdapter\">\r\n            <summary>\r\n            EqualityAdapter class handles all equality comparisons\r\n            that use an IEqualityComparer, IEqualityComparer&lt;T&gt;\r\n            or a ComparisonAdapter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.AreEqual(System.Object,System.Object)\">\r\n            <summary>\r\n            Compares two objects, returning true if they are equal\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.CanCompare(System.Object,System.Object)\">\r\n            <summary>\r\n            Returns true if the two objects can be compared by this adapter.\r\n            The base adapter cannot handle IEnumerables except for strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)\">\r\n            <summary>\r\n            Returns an EqualityAdapter that wraps an IComparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)\">\r\n            <summary>\r\n            Returns an EqualityAdapter that wraps an IEqualityComparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns an EqualityAdapter that wraps an IEqualityComparer&lt;T&gt;.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})\">\r\n            <summary>\r\n            Returns an EqualityAdapter that wraps an IComparer&lt;T&gt;.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})\">\r\n            <summary>\r\n            Returns an EqualityAdapter that wraps a Comparison&lt;T&gt;.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter\">\r\n            <summary>\r\n            EqualityAdapter that wraps an IComparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EqualityAdapter.GenericEqualityAdapter`1.CanCompare(System.Object,System.Object)\">\r\n            <summary>\r\n            Returns true if the two objects can be compared by this adapter.\r\n            Generic adapter requires objects of the specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EqualityAdapter.ComparerAdapter`1\">\r\n            <summary>\r\n            EqualityAdapter that wraps an IComparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.FloatingPointNumerics\">\r\n            <summary>Helper routines for working with floating point numbers</summary>\r\n            <remarks>\r\n              <para>\r\n                The floating point comparison code is based on this excellent article:\r\n                http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm\r\n              </para>\r\n              <para>\r\n                \"ULP\" means Unit in the Last Place and in the context of this library refers to\r\n                the distance between two adjacent floating point numbers. IEEE floating point\r\n                numbers can only represent a finite subset of natural numbers, with greater\r\n                accuracy for smaller numbers and lower accuracy for very large numbers.\r\n              </para>\r\n              <para>\r\n                If a comparison is allowed \"2 ulps\" of deviation, that means the values are\r\n                allowed to deviate by up to 2 adjacent floating point values, which might be\r\n                as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)\">\r\n            <summary>Compares two floating point values for equality</summary>\r\n            <param name=\"left\">First floating point value to be compared</param>\r\n            <param name=\"right\">Second floating point value t be compared</param>\r\n            <param name=\"maxUlps\">\r\n              Maximum number of representable floating point values that are allowed to\r\n              be between the left and the right floating point values\r\n            </param>\r\n            <returns>True if both numbers are equal or close to being equal</returns>\r\n            <remarks>\r\n              <para>\r\n                Floating point values can only represent a finite subset of natural numbers.\r\n                For example, the values 2.00000000 and 2.00000024 can be stored in a float,\r\n                but nothing inbetween them.\r\n              </para>\r\n              <para>\r\n                This comparison will count how many possible floating point values are between\r\n                the left and the right number. If the number of possible values between both\r\n                numbers is less than or equal to maxUlps, then the numbers are considered as\r\n                being equal.\r\n              </para>\r\n              <para>\r\n                Implementation partially follows the code outlined here:\r\n                http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)\">\r\n            <summary>Compares two double precision floating point values for equality</summary>\r\n            <param name=\"left\">First double precision floating point value to be compared</param>\r\n            <param name=\"right\">Second double precision floating point value t be compared</param>\r\n            <param name=\"maxUlps\">\r\n              Maximum number of representable double precision floating point values that are\r\n              allowed to be between the left and the right double precision floating point values\r\n            </param>\r\n            <returns>True if both numbers are equal or close to being equal</returns>\r\n            <remarks>\r\n              <para>\r\n                Double precision floating point values can only represent a limited series of\r\n                natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004\r\n                can be stored in a double, but nothing inbetween them.\r\n              </para>\r\n              <para>\r\n                This comparison will count how many possible double precision floating point\r\n                values are between the left and the right number. If the number of possible\r\n                values between both numbers is less than or equal to maxUlps, then the numbers\r\n                are considered as being equal.\r\n              </para>\r\n              <para>\r\n                Implementation partially follows the code outlined here:\r\n                http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/\r\n              </para>\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)\">\r\n            <summary>\r\n              Reinterprets the memory contents of a floating point value as an integer value\r\n            </summary>\r\n            <param name=\"value\">\r\n              Floating point value whose memory contents to reinterpret\r\n            </param>\r\n            <returns>\r\n              The memory contents of the floating point value interpreted as an integer\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)\">\r\n            <summary>\r\n              Reinterprets the memory contents of a double precision floating point\r\n              value as an integer value\r\n            </summary>\r\n            <param name=\"value\">\r\n              Double precision floating point value whose memory contents to reinterpret\r\n            </param>\r\n            <returns>\r\n              The memory contents of the double precision floating point value\r\n              interpreted as an integer\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)\">\r\n            <summary>\r\n              Reinterprets the memory contents of an integer as a floating point value\r\n            </summary>\r\n            <param name=\"value\">Integer value whose memory contents to reinterpret</param>\r\n            <returns>\r\n              The memory contents of the integer value interpreted as a floating point value\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)\">\r\n            <summary>\r\n              Reinterprets the memory contents of an integer value as a double precision\r\n              floating point value\r\n            </summary>\r\n            <param name=\"value\">Integer whose memory contents to reinterpret</param>\r\n            <returns>\r\n              The memory contents of the integer interpreted as a double precision\r\n              floating point value\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion\">\r\n            <summary>Union of a floating point variable and an integer</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float\">\r\n            <summary>The union's value as a floating point variable</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int\">\r\n            <summary>The union's value as an integer</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt\">\r\n            <summary>The union's value as an unsigned integer</summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion\">\r\n            <summary>Union of a double precision floating point variable and a long</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double\">\r\n            <summary>The union's value as a double precision floating point variable</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long\">\r\n            <summary>The union's value as a long</summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong\">\r\n            <summary>The union's value as an unsigned long</summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.GreaterThanConstraint\">\r\n            <summary>\r\n            Tests whether a value is greater than the value supplied to its constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.GreaterThanConstraint.expected\">\r\n            <summary>\r\n            The value against which a comparison is to be made\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:GreaterThanConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint\">\r\n            <summary>\r\n            Tests whether a value is greater than or equal to the value supplied to its constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.expected\">\r\n            <summary>\r\n            The value against which a comparison is to be made\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:GreaterThanOrEqualConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.LessThanConstraint\">\r\n            <summary>\r\n            Tests whether a value is less than the value supplied to its constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.LessThanConstraint.expected\">\r\n            <summary>\r\n            The value against which a comparison is to be made\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:LessThanConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.LessThanOrEqualConstraint\">\r\n            <summary>\r\n            Tests whether a value is less than or equal to the value supplied to its constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.LessThanOrEqualConstraint.expected\">\r\n            <summary>\r\n            The value against which a comparison is to be made\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:LessThanOrEqualConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.MessageWriter\">\r\n            <summary>\r\n            MessageWriter is the abstract base for classes that write\r\n            constraint descriptions and messages in some form. The\r\n            class has separate methods for writing various components\r\n            of a message, allowing implementations to tailor the\r\n            presentation as needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.#ctor\">\r\n            <summary>\r\n            Construct a MessageWriter given a culture\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])\">\r\n            <summary>\r\n            Method to write single line  message with optional args, usually\r\n            written to precede the general failure message.\r\n            </summary>\r\n            <param name=\"message\">The message to be written</param>\r\n            <param name=\"args\">Any arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Method to write single line  message with optional args, usually\r\n            written to precede the general failure message, at a givel \r\n            indentation level.\r\n            </summary>\r\n            <param name=\"level\">The indentation level of the message</param>\r\n            <param name=\"message\">The message to be written</param>\r\n            <param name=\"args\">Any arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Display Expected and Actual lines for a constraint. This\r\n            is called by MessageWriter's default implementation of \r\n            WriteMessageTo and provides the generic two-line display. \r\n            </summary>\r\n            <param name=\"constraint\">The constraint that failed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)\">\r\n            <summary>\r\n            Display Expected and Actual lines for given values. This\r\n            method may be called by constraints that need more control over\r\n            the display of actual and expected values than is provided\r\n            by the default implementation.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value causing the failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)\">\r\n            <summary>\r\n            Display Expected and Actual lines for given values, including\r\n            a tolerance value on the Expected line.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value causing the failure</param>\r\n            <param name=\"tolerance\">The tolerance within which the test was made</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Display the expected and actual string values on separate lines.\r\n            If the mismatch parameter is >=0, an additional line is displayed\r\n            line containing a caret that points to the mismatch point.\r\n            </summary>\r\n            <param name=\"expected\">The expected string value</param>\r\n            <param name=\"actual\">The actual string value</param>\r\n            <param name=\"mismatch\">The point at which the strings don't match or -1</param>\r\n            <param name=\"ignoreCase\">If true, case is ignored in locating the point where the strings differ</param>\r\n            <param name=\"clipping\">If true, the strings should be clipped to fit the line</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)\">\r\n            <summary>\r\n            Writes the text for a connector.\r\n            </summary>\r\n            <param name=\"connector\">The connector.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)\">\r\n            <summary>\r\n            Writes the text for a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for an expected value.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)\">\r\n            <summary>\r\n            Writes the text for a modifier\r\n            </summary>\r\n            <param name=\"modifier\">The modifier.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for an actual value.\r\n            </summary>\r\n            <param name=\"actual\">The actual value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for a generalized value.\r\n            </summary>\r\n            <param name=\"val\">The value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Writes the text for a collection value,\r\n            starting at a particular point, to a max length\r\n            </summary>\r\n            <param name=\"collection\">The collection containing elements to write.</param>\r\n            <param name=\"start\">The starting point of the elements to write</param>\r\n            <param name=\"max\">The maximum number of elements to write</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength\">\r\n            <summary>\r\n            Abstract method to get the max line length\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.MsgUtils\">\r\n            <summary>\r\n            Static methods used in creating messages\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS\">\r\n            <summary>\r\n            Static string used when strings are clipped\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)\">\r\n            <summary>\r\n            Returns the representation of a type as used in NUnitLite.\r\n            This is the same as Type.ToString() except for arrays,\r\n            which are displayed with their declared sizes.\r\n            </summary>\r\n            <param name=\"obj\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)\">\r\n            <summary>\r\n            Converts any control characters in a string \r\n            to their escaped representation.\r\n            </summary>\r\n            <param name=\"s\">The string to be converted</param>\r\n            <returns>The converted string</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])\">\r\n            <summary>\r\n            Return the a string representation for a set of indices into an array\r\n            </summary>\r\n            <param name=\"indices\">Array of indices for which a string is needed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int32)\">\r\n            <summary>\r\n            Get an array of indices representing the point in a enumerable, \r\n            collection or array corresponding to a single int index into the \r\n            collection.\r\n            </summary>\r\n            <param name=\"collection\">The collection to which the indices apply</param>\r\n            <param name=\"index\">Index in the collection</param>\r\n            <returns>Array of indices</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Clip a string to a given length, starting at a particular offset, returning the clipped\r\n            string with ellipses representing the removed parts\r\n            </summary>\r\n            <param name=\"s\">The string to be clipped</param>\r\n            <param name=\"maxStringLength\">The maximum permitted length of the result string</param>\r\n            <param name=\"clipStart\">The point at which to start clipping</param>\r\n            <returns>The clipped string</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Clip the expected and actual strings in a coordinated fashion, \r\n            so that they may be displayed together.\r\n            </summary>\r\n            <param name=\"expected\"></param>\r\n            <param name=\"actual\"></param>\r\n            <param name=\"maxDisplayLength\"></param>\r\n            <param name=\"mismatch\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)\">\r\n            <summary>\r\n            Shows the position two strings start to differ.  Comparison \r\n            starts at the start index.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"istart\">The index in the strings at which comparison should start</param>\r\n            <param name=\"ignoreCase\">Boolean indicating whether case should be ignored</param>\r\n            <returns>-1 if no mismatch found, or the index where mismatch found</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.Numerics\">\r\n            <summary>\r\n            The Numerics class contains common operations on numeric values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)\">\r\n            <summary>\r\n            Checks the type of the object, returning true if\r\n            the object is a numeric type.\r\n            </summary>\r\n            <param name=\"obj\">The object to check</param>\r\n            <returns>true if the object is a numeric type</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)\">\r\n            <summary>\r\n            Checks the type of the object, returning true if\r\n            the object is a floating point numeric type.\r\n            </summary>\r\n            <param name=\"obj\">The object to check</param>\r\n            <returns>true if the object is a floating point numeric type</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)\">\r\n            <summary>\r\n            Checks the type of the object, returning true if\r\n            the object is a fixed point numeric type.\r\n            </summary>\r\n            <param name=\"obj\">The object to check</param>\r\n            <returns>true if the object is a fixed point numeric type</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)\">\r\n            <summary>\r\n            Test two numeric values for equality, performing the usual numeric \r\n            conversions and using a provided or default tolerance. If the tolerance \r\n            provided is Empty, this method may set it to a default tolerance.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"tolerance\">A reference to the tolerance in effect</param>\r\n            <returns>True if the values are equal</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compare two numeric values, performing the usual numeric conversions.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <returns>The relationship of the values to each other</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NUnitComparer\">\r\n            <summary>\r\n            NUnitComparer encapsulates NUnit's default behavior\r\n            in comparing two objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)\">\r\n            <summary>\r\n            Compares two objects\r\n            </summary>\r\n            <param name=\"x\"></param>\r\n            <param name=\"y\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitComparer.Default\">\r\n            <summary>\r\n            Returns the default NUnitComparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NUnitComparer`1\">\r\n            <summary>\r\n            Generic version of NUnitComparer\r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NUnitComparer`1.Compare(`0,`0)\">\r\n            <summary>\r\n            Compare two objects of the same type\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NUnitEqualityComparer\">\r\n            <summary>\r\n            NUnitEqualityComparer encapsulates NUnit's handling of\r\n            equality tests between objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.INUnitEqualityComparer\">\r\n            <summary>\r\n            \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.INUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)\">\r\n            <summary>\r\n            Compares two objects for equality within a tolerance\r\n            </summary>\r\n            <param name=\"x\">The first object to compare</param>\r\n            <param name=\"y\">The second object to compare</param>\r\n            <param name=\"tolerance\">The tolerance to use in the comparison</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive\">\r\n            <summary>\r\n            If true, all string comparisons will ignore case\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection\">\r\n            <summary>\r\n            If true, arrays will be treated as collections, allowing\r\n            those of different dimensions to be compared\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparers\">\r\n            <summary>\r\n            Comparison objects used in comparisons for some constraints.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NUnitEqualityComparer.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)\">\r\n            <summary>\r\n            Compares two objects for equality within a tolerance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance@)\">\r\n            <summary>\r\n            Helper method to compare two arrays\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Method to compare two DirectoryInfo objects\r\n            </summary>\r\n            <param name=\"x\">first directory to compare</param>\r\n            <param name=\"y\">second directory to compare</param>\r\n            <returns>true if equivalent, false if not</returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default\">\r\n            <summary>\r\n            Returns the default NUnitEqualityComparer\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase\">\r\n            <summary>\r\n            Gets and sets a flag indicating whether case should\r\n            be ignored in determining equality.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection\">\r\n            <summary>\r\n            Gets and sets a flag indicating that arrays should be\r\n            compared as collections, without regard to their shape.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparers\">\r\n            <summary>\r\n            Gets and sets an external comparer to be used to\r\n            test for equality. It is applied to members of\r\n            collections, in place of NUnit's own logic.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints\">\r\n            <summary>\r\n            Gets the list of failure points for the last Match performed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint\">\r\n            <summary>\r\n            FailurePoint class represents one point of failure\r\n            in an equality test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint.Position\">\r\n            <summary>\r\n            The location of the failure\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint.ExpectedValue\">\r\n            <summary>\r\n            The expected value\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint.ActualValue\">\r\n            <summary>\r\n            The actual value\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint.ExpectedHasData\">\r\n            <summary>\r\n            Indicates whether the expected value is valid\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoint.ActualHasData\">\r\n            <summary>\r\n            Indicates whether the actual value is valid\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PathConstraint\">\r\n            <summary>\r\n            PathConstraint serves as the abstract base of constraints\r\n            that operate on paths and provides several helper methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.PathConstraint.expectedPath\">\r\n            <summary>\r\n            The expected path used in the constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.PathConstraint.actualPath\">\r\n            <summary>\r\n            The actual path being tested\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive\">\r\n            <summary>\r\n            Flag indicating whether a caseInsensitive comparison should be made\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Construct a PathConstraint for a give expected path\r\n            </summary>\r\n            <param name=\"expected\">The expected path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.IsMatch(System.String,System.String)\">\r\n            <summary>\r\n            Returns true if the expected path and actual path match\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)\">\r\n            <summary>\r\n            Canonicalize the provided path\r\n            </summary>\r\n            <param name=\"path\"></param>\r\n            <returns>The path in standardized form</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.IsSamePath(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Test whether two paths are the same\r\n            </summary>\r\n            <param name=\"path1\">The first path</param>\r\n            <param name=\"path2\">The second path</param>\r\n            <param name=\"ignoreCase\">Indicates whether case should be ignored</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.IsSubPath(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Test whether one path is under another path\r\n            </summary>\r\n            <param name=\"path1\">The first path - supposed to be the parent path</param>\r\n            <param name=\"path2\">The second path - supposed to be the child path</param>\r\n            <param name=\"ignoreCase\">Indicates whether case should be ignored</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PathConstraint.IsSamePathOrUnder(System.String,System.String)\">\r\n            <summary>\r\n            Test whether one path is the same as or under another path\r\n            </summary>\r\n            <param name=\"path1\">The first path - supposed to be the parent path</param>\r\n            <param name=\"path2\">The second path - supposed to be the child path</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase\">\r\n            <summary>\r\n            Modifies the current instance to be case-insensitve\r\n            and returns it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.PathConstraint.RespectCase\">\r\n            <summary>\r\n            Modifies the current instance to be case-sensitve\r\n            and returns it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SamePathConstraint\">\r\n            <summary>\r\n            Summary description for SamePathConstraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:SamePathConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathConstraint.IsMatch(System.String,System.String)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"expectedPath\">The expected path</param>\r\n            <param name=\"actualPath\">The actual path</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SubPathConstraint\">\r\n            <summary>\r\n            SubPathConstraint tests that the actual path is under the expected path\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubPathConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:SubPathConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubPathConstraint.IsMatch(System.String,System.String)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"expectedPath\">The expected path</param>\r\n            <param name=\"actualPath\">The actual path</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubPathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SamePathOrUnderConstraint\">\r\n            <summary>\r\n            SamePathOrUnderConstraint tests that one path is under another\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:SamePathOrUnderConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.IsMatch(System.String,System.String)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"expectedPath\">The expected path</param>\r\n            <param name=\"actualPath\">The actual path</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PredicateConstraint`1\">\r\n            <summary>\r\n            Predicate constraint wraps a Predicate in a constraint,\r\n            returning success if the predicate is true.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})\">\r\n            <summary>\r\n            Construct a PredicateConstraint from a predicate\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)\">\r\n            <summary>\r\n            Determines whether the predicate succeeds when applied\r\n            to the actual value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Writes the description to a MessageWriter\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NotConstraint\">\r\n            <summary>\r\n            NotConstraint negates the effect of some other constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:NotConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"baseConstraint\">The base constraint to be negated.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for if the base constraint fails, false if it succeeds</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a MessageWriter.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AllItemsConstraint\">\r\n            <summary>\r\n            AllItemsConstraint applies another constraint to each\r\n            item in a collection, succeeding if they all succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Construct an AllItemsConstraint on top of an existing constraint\r\n            </summary>\r\n            <param name=\"itemConstraint\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply the item constraint to each item in the collection,\r\n            failing if any item fails.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SomeItemsConstraint\">\r\n            <summary>\r\n            SomeItemsConstraint applies another constraint to each\r\n            item in a collection, succeeding if any of them succeeds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Construct a SomeItemsConstraint on top of an existing constraint\r\n            </summary>\r\n            <param name=\"itemConstraint\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply the item constraint to each item in the collection,\r\n            succeeding if any item succeeds.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NoItemConstraint\">\r\n            <summary>\r\n            NoItemConstraint applies another constraint to each\r\n            item in a collection, failing if any of them succeeds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Construct a NoItemConstraint on top of an existing constraint\r\n            </summary>\r\n            <param name=\"itemConstraint\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply the item constraint to each item in the collection,\r\n            failing if any item fails.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ExactCountConstraint\">\r\n            <summary>\r\n            ExactCoutConstraint applies another constraint to each\r\n            item in a collection, succeeding only if a specified\r\n            number of items succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactCountConstraint.#ctor(System.Int32,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Construct an ExactCountConstraint on top of an existing constraint\r\n            </summary>\r\n            <param name=\"expectedCount\"></param>\r\n            <param name=\"itemConstraint\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactCountConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Apply the item constraint to each item in the collection,\r\n            succeeding only if the expected number of items pass.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactCountConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\"></param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PropertyExistsConstraint\">\r\n            <summary>\r\n            PropertyExistsConstraint tests that a named property\r\n            exists on the object provided through Match.\r\n            \r\n            Originally, PropertyConstraint provided this feature\r\n            in addition to making optional tests on the vaue\r\n            of the property. The two constraints are now separate.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:PropertyExistConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the property exists for a given object\r\n            </summary>\r\n            <param name=\"actual\">The object to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of the constraint.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.PropertyConstraint\">\r\n            <summary>\r\n            PropertyConstraint extracts a named property and uses\r\n            its value as the actual value for a chained constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:PropertyConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"baseConstraint\">The constraint to apply to the property.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of the constraint.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.RangeConstraint`1\">\r\n            <summary>\r\n            RangeConstraint tests whethe two values are within a \r\n            specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RangeConstraint`1.#ctor(`0,`0)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:RangeConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"from\">From.</param>\r\n            <param name=\"to\">To.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RangeConstraint`1.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RangeConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ResolvableConstraintExpression\">\r\n            <summary>\r\n            ResolvableConstraintExpression is used to represent a compound\r\n            constraint being constructed at a point where the last operator\r\n            may either terminate the expression or may have additional \r\n            qualifying constraints added to it. \r\n            \r\n            It is used, for example, for a Property element or for\r\n            an Exception element, either of which may be optionally\r\n            followed by constraints that apply to the property or \r\n            exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor\">\r\n            <summary>\r\n            Create a new instance of ResolvableConstraintExpression\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)\">\r\n            <summary>\r\n            Create a new instance of ResolvableConstraintExpression,\r\n            passing in a pre-populated ConstraintBuilder.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve\">\r\n            <summary>\r\n            Resolve the current expression to a Constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied only if both \r\n            argument constraints are satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied only if both \r\n            argument constraints are satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied only if both \r\n            argument constraints are satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if either \r\n            of the argument constraints is satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if either \r\n            of the argument constraints is satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if either \r\n            of the argument constraints is satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_LogicalNot(NUnit.Framework.Constraints.ResolvableConstraintExpression)\">\r\n            <summary>\r\n            This operator creates a constraint that is satisfied if the \r\n            argument constraint is not satisfied.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And\">\r\n            <summary>\r\n            Appends an And Operator to the expression\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or\">\r\n            <summary>\r\n            Appends an Or operator to the expression.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ReusableConstraint\">\r\n            <summary>\r\n            ReusableConstraint wraps a resolved constraint so that it\r\n            may be saved and reused as needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ReusableConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Construct a ReusableConstraint\r\n            </summary>\r\n            <param name=\"c\">The constraint or expression to be reused</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ReusableConstraint.op_Implicit(NUnit.Framework.Constraints.Constraint)~NUnit.Framework.Constraints.ReusableConstraint\">\r\n            <summary>\r\n            Conversion operator from a normal constraint to a ReusableConstraint.\r\n            </summary>\r\n            <param name=\"c\">The original constraint to be wrapped as a ReusableConstraint</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ReusableConstraint.ToString\">\r\n            <summary>\r\n            Returns the string representation of the constraint.\r\n            </summary>\r\n            <returns>A string representing the constraint</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ReusableConstraint.Resolve\">\r\n            <summary>\r\n            Resolves the ReusableConstraint by returning the constraint\r\n            that it originally wrapped.\r\n            </summary>\r\n            <returns>A resolved constraint</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SameAsConstraint\">\r\n            <summary>\r\n            SameAsConstraint tests whether an object is identical to\r\n            the object passed to its constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:SameAsConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected object.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.BinarySerializableConstraint\">\r\n            <summary>\r\n            BinarySerializableConstraint tests whether \r\n            an object is serializable in binary format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.XmlSerializableConstraint\">\r\n            <summary>\r\n            BinarySerializableConstraint tests whether \r\n            an object is serializable in binary format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.StringConstraint\">\r\n            <summary>\r\n            StringConstraint is the abstract base for constraints\r\n            that operate on strings. It supports the IgnoreCase\r\n            modifier for string operations.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.StringConstraint.expected\">\r\n            <summary>\r\n            The expected value\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive\">\r\n            <summary>\r\n            Indicates whether tests should be case-insensitive\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Constructs a StringConstraint given an expected value\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase\">\r\n            <summary>\r\n            Modify the constraint to ignore case in matching.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EmptyStringConstraint\">\r\n            <summary>\r\n            EmptyStringConstraint tests whether a string is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint\">\r\n            <summary>\r\n            NullEmptyStringConstraint tests whether a string is either null or empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor\">\r\n            <summary>\r\n            Constructs a new NullOrEmptyStringConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.SubstringConstraint\">\r\n            <summary>\r\n            SubstringConstraint can test whether a string contains\r\n            the expected substring.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:SubstringConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.StartsWithConstraint\">\r\n            <summary>\r\n            StartsWithConstraint can test whether a string starts\r\n            with an expected substring.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:StartsWithConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is matched by the actual value.\r\n            This is a template method, which calls the IsMatch method\r\n            of the derived class.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.EndsWithConstraint\">\r\n            <summary>\r\n            EndsWithConstraint can test whether a string ends\r\n            with an expected substring.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:EndsWithConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is matched by the actual value.\r\n            This is a template method, which calls the IsMatch method\r\n            of the derived class.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.RegexConstraint\">\r\n            <summary>\r\n            RegexConstraint can test whether a string matches\r\n            the pattern provided.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:RegexConstraint\"/> class.\r\n            </summary>\r\n            <param name=\"pattern\">The pattern.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True for success, false for failure</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ThrowsConstraint\">\r\n            <summary>\r\n            ThrowsConstraint is used to test the exception thrown by \r\n            a delegate by applying a constraint to it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:ThrowsConstraint\"/> class,\r\n            using a constraint to be applied to the exception.\r\n            </summary>\r\n            <param name=\"baseConstraint\">A constraint to apply to the caught exception.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Executes the code of the delegate and captures any exception.\r\n            If a non-null base constraint was provided, it applies that\r\n            constraint to the exception.\r\n            </summary>\r\n            <param name=\"actual\">A delegate representing the code to be tested</param>\r\n            <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)\">\r\n            <summary>\r\n            Converts an ActualValueDelegate to a TestDelegate\r\n            before calling the primary overload.\r\n            </summary>\r\n            <param name=\"del\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation\">\r\n            <summary>\r\n            Returns the string representation of this constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException\">\r\n            <summary>\r\n            Get the actual exception thrown - used by Assert.Throws.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ThrowsNothingConstraint\">\r\n            <summary>\r\n            ThrowsNothingConstraint tests that a delegate does not\r\n            throw an exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether the constraint is satisfied by a given value\r\n            </summary>\r\n            <param name=\"actual\">The value to be tested</param>\r\n            <returns>True if no exception is thrown, otherwise false</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)\">\r\n            <summary>\r\n            Converts an ActualValueDelegate to a TestDelegate\r\n            before calling the primary overload.\r\n            </summary>\r\n            <param name=\"del\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the constraint description to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the description is displayed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. The default implementation simply writes\r\n            the raw value of actual, leaving it to the writer to\r\n            perform any formatting.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ToleranceMode\">\r\n            <summary>\r\n            Modes in which the tolerance value for a comparison can\r\n            be interpreted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ToleranceMode.None\">\r\n            <summary>\r\n            The tolerance was created with a value, without specifying \r\n            how the value would be used. This is used to prevent setting\r\n            the mode more than once and is generally changed to Linear\r\n            upon execution of the test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ToleranceMode.Linear\">\r\n            <summary>\r\n            The tolerance is used as a numeric range within which\r\n            two compared values are considered to be equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ToleranceMode.Percent\">\r\n            <summary>\r\n            Interprets the tolerance as the percentage by which\r\n            the two compared values my deviate from each other.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.ToleranceMode.Ulps\">\r\n            <summary>\r\n            Compares two values based in their distance in\r\n            representable numbers.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.Tolerance\">\r\n            <summary>\r\n            The Tolerance class generalizes the notion of a tolerance\r\n            within which an equality test succeeds. Normally, it is\r\n            used with numeric types, but it can be used with any\r\n            type that supports taking a difference between two \r\n            objects and comparing that difference to a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)\">\r\n            <summary>\r\n            Constructs a linear tolerance of a specdified amount\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)\">\r\n            <summary>\r\n            Constructs a tolerance given an amount and ToleranceMode\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric\">\r\n            <summary>\r\n            Tests that the current Tolerance is linear with a \r\n            numeric value, throwing an exception if it is not.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Empty\">\r\n            <summary>\r\n            Returns an empty Tolerance object, equivalent to\r\n            specifying no tolerance. In most cases, it results\r\n            in an exact match but for floats and doubles a\r\n            default tolerance may be used.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Zero\">\r\n            <summary>\r\n            Returns a zero Tolerance object, equivalent to \r\n            specifying an exact match.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Mode\">\r\n            <summary>\r\n            Gets the ToleranceMode for the current Tolerance\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Value\">\r\n            <summary>\r\n            Gets the value of the current Tolerance instance.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Percent\">\r\n            <summary>\r\n            Returns a new tolerance, using the current amount as a percentage.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Ulps\">\r\n            <summary>\r\n            Returns a new tolerance, using the current amount in Ulps.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Days\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of days.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Hours\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of hours.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Minutes\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of minutes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Seconds\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of seconds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Milliseconds\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of milliseconds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.Ticks\">\r\n            <summary>\r\n            Returns a new tolerance with a TimeSpan as the amount, using \r\n            the current amount as a number of clock ticks.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Constraints.Tolerance.IsEmpty\">\r\n            <summary>\r\n            Returns true if the current tolerance is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.TypeConstraint\">\r\n            <summary>\r\n            TypeConstraint is the abstract base for constraints\r\n            that take a Type as their expected value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.Constraints.TypeConstraint.expectedType\">\r\n            <summary>\r\n            The expected Type used by the constraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct a TypeConstraint for a given Type\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. TypeConstraints override this method to write\r\n            the name of the type.\r\n            </summary>\r\n            <param name=\"writer\">The writer on which the actual value is displayed</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ExactTypeConstraint\">\r\n            <summary>\r\n            ExactTypeConstraint is used to test that an object\r\n            is of the exact type provided in the constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct an ExactTypeConstraint for a given Type\r\n            </summary>\r\n            <param name=\"type\">The expected Type.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test that an object is of the exact type specified\r\n            </summary>\r\n            <param name=\"actual\">The actual value.</param>\r\n            <returns>True if the tested object is of the exact type provided, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to use</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.ExceptionTypeConstraint\">\r\n            <summary>\r\n            ExceptionTypeConstraint is a special version of ExactTypeConstraint\r\n            used to provided detailed info about the exception thrown in\r\n            an error message.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExceptionTypeConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Constructs an ExceptionTypeConstraint\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.ExceptionTypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write the actual value for a failing constraint test to a\r\n            MessageWriter. Overriden to write additional information \r\n            in the case of an Exception.\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to use</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.InstanceOfTypeConstraint\">\r\n            <summary>\r\n            InstanceOfTypeConstraint is used to test that an object\r\n            is of the same type provided or derived from it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct an InstanceOfTypeConstraint for the type provided\r\n            </summary>\r\n            <param name=\"type\">The expected Type</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether an object is of the specified type or a derived type\r\n            </summary>\r\n            <param name=\"actual\">The object to be tested</param>\r\n            <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to use</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AssignableFromConstraint\">\r\n            <summary>\r\n            AssignableFromConstraint is used to test that an object\r\n            can be assigned from a given Type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct an AssignableFromConstraint for the type provided\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether an object can be assigned from the specified type\r\n            </summary>\r\n            <param name=\"actual\">The object to be tested</param>\r\n            <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to use</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Constraints.AssignableToConstraint\">\r\n            <summary>\r\n            AssignableToConstraint is used to test that an object\r\n            can be assigned to a given Type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)\">\r\n            <summary>\r\n            Construct an AssignableToConstraint for the type provided\r\n            </summary>\r\n            <param name=\"type\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)\">\r\n            <summary>\r\n            Test whether an object can be assigned to the specified type\r\n            </summary>\r\n            <param name=\"actual\">The object to be tested</param>\r\n            <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)\">\r\n            <summary>\r\n            Write a description of this constraint to a MessageWriter\r\n            </summary>\r\n            <param name=\"writer\">The MessageWriter to use</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.AssertionException\">\r\n            <summary>\r\n            Thrown when an assertion failed.\r\n            </summary>\r\n            \r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionException.#ctor(System.String)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n            <param name=\"inner\">The exception that caused the \r\n            current exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Serialization Constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.IgnoreException\">\r\n            <summary>\r\n            Thrown when an assertion failed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IgnoreException.#ctor(System.String)\">\r\n            <param name=\"message\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n            <param name=\"inner\">The exception that caused the \r\n            current exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Serialization Constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.InconclusiveException\">\r\n            <summary>\r\n            Thrown when a test executes inconclusively.\r\n            </summary>\r\n            \r\n        </member>\r\n        <member name=\"M:NUnit.Framework.InconclusiveException.#ctor(System.String)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n            <param name=\"inner\">The exception that caused the \r\n            current exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Serialization Constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SuccessException\">\r\n            <summary>\r\n            Thrown when an assertion failed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SuccessException.#ctor(System.String)\">\r\n            <param name=\"message\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)\">\r\n            <param name=\"message\">The error message that explains \r\n            the reason for the exception</param>\r\n            <param name=\"inner\">The exception that caused the \r\n            current exception</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Serialization Constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.INUnitEqualityComparer`1\">\r\n            <summary>\r\n            \r\n            </summary>\r\n            <typeparam name=\"T\"></typeparam>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.INUnitEqualityComparer`1.AreEqual(`0,`0,NUnit.Framework.Constraints.Tolerance@)\">\r\n            <summary>\r\n            Compares two objects of a given Type for equality within a tolerance\r\n            </summary>\r\n            <param name=\"x\">The first object to compare</param>\r\n            <param name=\"y\">The second object to compare</param>\r\n            <param name=\"tolerance\">The tolerance to use in the comparison</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ActionTargets\">\r\n            <summary>\r\n            The different targets a test action attribute can be applied to\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.ActionTargets.Default\">\r\n            <summary>\r\n            Default target, which is determined by where the action attribute is attached\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.ActionTargets.Test\">\r\n            <summary>\r\n            Target a individual test case\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.ActionTargets.Suite\">\r\n            <summary>\r\n            Target a suite of test cases\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestDelegate\">\r\n            <summary>\r\n            Delegate used by tests that execute code and\r\n            capture any thrown exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Assert\">\r\n            <summary>\r\n            The Assert class contains a collection of static methods that\r\n            implement the most common assertions used in NUnit.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.#ctor\">\r\n            <summary>\r\n            We don't actually want any instances of this object, but some people\r\n            like to inherit from it to add other static methods. Hence, the\r\n            protected constructor disallows any instances of this object. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Helper for Assert.AreEqual(double expected, double actual, ...)\r\n            allowing code generation to work consistently.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Pass(System.String,System.Object[])\">\r\n            <summary>\r\n            Throws a <see cref=\"T:NUnit.Framework.SuccessException\"/> with the message and arguments \r\n            that are passed in. This allows a test to be cut short, with a result\r\n            of success returned to NUnit.\r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Pass(System.String)\">\r\n            <summary>\r\n            Throws a <see cref=\"T:NUnit.Framework.SuccessException\"/> with the message and arguments \r\n            that are passed in. This allows a test to be cut short, with a result\r\n            of success returned to NUnit.\r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Pass\">\r\n            <summary>\r\n            Throws a <see cref=\"T:NUnit.Framework.SuccessException\"/> with the message and arguments \r\n            that are passed in. This allows a test to be cut short, with a result\r\n            of success returned to NUnit.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Fail(System.String,System.Object[])\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.AssertionException\"/> with the message and arguments \r\n            that are passed in. This is used by the other Assert functions. \r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Fail(System.String)\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.AssertionException\"/> with the message that is \r\n            passed in. This is used by the other Assert functions. \r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Fail\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.AssertionException\"/>. \r\n            This is used by the other Assert functions. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.IgnoreException\"/> with the message and arguments \r\n            that are passed in.  This causes the test to be reported as ignored.\r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Ignore(System.String)\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.IgnoreException\"/> with the message that is \r\n            passed in. This causes the test to be reported as ignored. \r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.AssertionException\"/> with.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Ignore\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.IgnoreException\"/>. \r\n            This causes the test to be reported as ignored. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.InconclusiveException\"/> with the message and arguments \r\n            that are passed in.  This causes the test to be reported as inconclusive.\r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.InconclusiveException\"/> with.</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Inconclusive(System.String)\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.InconclusiveException\"/> with the message that is \r\n            passed in. This causes the test to be reported as inconclusive. \r\n            </summary>\r\n            <param name=\"message\">The message to initialize the <see cref=\"T:NUnit.Framework.InconclusiveException\"/> with.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Inconclusive\">\r\n            <summary>\r\n            Throws an <see cref=\"T:NUnit.Framework.InconclusiveException\"/>. \r\n            This causes the test to be reported as Inconclusive. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Asserts that the code represented by a delegate throws an exception\r\n            that satisfies the constraint provided.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate to be executed</param>\r\n            <param name=\"constraint\">A ThrowsConstraint used in the test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            Used as a synonym for That in rare cases where a private setter \r\n            causes a Visual Basic compilation error.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            Used as a synonym for That in rare cases where a private setter \r\n            causes a Visual Basic compilation error.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.ByVal(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure. \r\n            Used as a synonym for That in rare cases where a private setter \r\n            causes a Visual Basic compilation error.\r\n            </summary>\r\n            <remarks>\r\n            This method is provided for use by VB developers needing to test\r\n            the value of properties with private setters.\r\n            </remarks>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expression\">A constraint to be satisfied by the exception</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expression\">A constraint to be satisfied by the exception</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expression\">A constraint to be satisfied by the exception</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The exception Type expected</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The exception Type expected</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The exception Type expected</param>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <typeparam name=\"T\">Type of the expected exception</typeparam>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <typeparam name=\"T\">Type of the expected exception</typeparam>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws a particular exception when called.\r\n            </summary>\r\n            <typeparam name=\"T\">Type of the expected exception</typeparam>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception when called\r\n            and returns it.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception when called\r\n            and returns it.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception when called\r\n            and returns it.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The expected Exception Type</param>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The expected Exception Type</param>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <param name=\"expectedExceptionType\">The expected Exception Type</param>\r\n            <param name=\"code\">A TestDelegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Exception Type</typeparam>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Exception Type</typeparam>\r\n            <param name=\"code\">A TestDelegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate throws an exception of a certain Type\r\n            or one derived from it when called and returns it.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Exception Type</typeparam>\r\n            <param name=\"code\">A TestDelegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that a delegate does not throw an exception\r\n            </summary>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)\">\r\n            <summary>\r\n            Verifies that a delegate does not throw an exception.\r\n            </summary>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)\">\r\n            <summary>\r\n            Verifies that a delegate does not throw an exception.\r\n            </summary>\r\n            <param name=\"code\">A TestSnippet delegate</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.True(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.True(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsTrue(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.False(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.False(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsFalse(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is false. If the condition is true the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.NotNull(System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.NotNull(System.Object)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNull(System.Object)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is not equal to <code>null</code>\r\n            If the object is <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Null(System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Null(System.Object)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNull(System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNull(System.Object)\">\r\n            <summary>\r\n            Verifies that the object that is passed in is equal to <code>null</code>\r\n            If the object is not <code>null</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"anObject\">The object that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Double)\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Verifies that the double that is passed in is an <code>NaN</code> value.\r\n            If the object is not <code>NaN</code> then an <see cref=\"T:NUnit.Framework.AssertionException\"/>\r\n            is thrown.\r\n            </summary>\r\n            <param name=\"aDouble\">The value that is to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that a string is empty - that is equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Assert that a string is empty - that is equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.String)\">\r\n            <summary>\r\n            Assert that a string is empty - that is equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that a string is not empty - that is not equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Assert that a string is not empty - that is not equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.String)\">\r\n            <summary>\r\n            Assert that a string is not empty - that is not equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is not empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is not empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is not empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing ICollection</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that a string is either null or equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Assert that a string is either null or equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)\">\r\n            <summary>\r\n            Assert that a string is either null or equal to string.Empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that a string is not null or empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Assert that a string is not null or empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)\">\r\n            <summary>\r\n            Assert that a string is not null or empty\r\n            </summary>\r\n            <param name=\"aString\">The string to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)\">\r\n            <summary>\r\n            Asserts that an object may be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type.</param>\r\n            <param name=\"actual\">The object under examination</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)\">\r\n            <summary>\r\n            Asserts that an object may not be assigned a  value of a given Type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type.</typeparam>\r\n            <param name=\"actual\">The object under examination</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)\">\r\n            <summary>\r\n            Asserts that an object is an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <param name=\"expected\">The expected Type</param>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)\">\r\n            <summary>\r\n            Asserts that an object is not an instance of a given type.\r\n            </summary>\r\n            <typeparam name=\"T\">The expected Type</typeparam>\r\n            <param name=\"actual\">The object being examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that two values are equal. If they are not, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)\">\r\n            <summary>\r\n            Verifies that two doubles are equal considering a delta. If the\r\n            expected value is infinity then the delta value is ignored. If \r\n            they are not equal then an <see cref=\"T:NUnit.Framework.AssertionException\"/> is\r\n            thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"delta\">The maximum acceptable difference between the\r\n            the expected and the actual</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two objects are equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that two objects are equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)\">\r\n            <summary>\r\n            Verifies that two objects are equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that two values are not equal. If they are equal, then an \r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two objects are not equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)\">\r\n            <summary>\r\n            Verifies that two objects are not equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)\">\r\n            <summary>\r\n            Verifies that two objects are not equal.  Two objects are considered\r\n            equal if both are null, or if both have the same value. NUnit\r\n            has special semantics for some object types.\r\n            If they are equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The value that is expected</param>\r\n            <param name=\"actual\">The actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two objects refer to the same object. If they\r\n            are not the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that two objects refer to the same object. If they\r\n            are not the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreSame(System.Object,System.Object)\">\r\n            <summary>\r\n            Asserts that two objects refer to the same object. If they\r\n            are not the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two objects do not refer to the same object. If they\r\n            are the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that two objects do not refer to the same object. If they\r\n            are the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)\">\r\n            <summary>\r\n            Asserts that two objects do not refer to the same object. If they\r\n            are the same an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The actual object</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.Single,System.Single)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)\">\r\n            <summary>\r\n            Verifies that the first value is greater than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.Single,System.Single)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)\">\r\n            <summary>\r\n            Verifies that the first value is less than the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)\">\r\n            <summary>\r\n            Verifies that the first value is greater than or equal tothe second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be greater</param>\r\n            <param name=\"arg2\">The second value, expected to be less</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)\">\r\n            <summary>\r\n            Verifies that the first value is less than or equal to the second\r\n            value. If it is not, then an\r\n            <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown. \r\n            </summary>\r\n            <param name=\"arg1\">The first value, expected to be less</param>\r\n            <param name=\"arg2\">The second value, expected to be greater</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that an object is contained in a list.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The list to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Array of objects to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,System.String)\">\r\n            <summary>\r\n            Asserts that an object is contained in a list.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The list to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)\">\r\n            <summary>\r\n            Asserts that an object is contained in a list.\r\n            </summary>\r\n            <param name=\"expected\">The expected object</param>\r\n            <param name=\"actual\">The list to be examined</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Assert.Counter\">\r\n            <summary>\r\n            Gets the number of assertions executed so far and \r\n            resets the counter to zero.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.AssertionHelper\">\r\n            <summary>\r\n            AssertionHelper is an optional base class for user tests,\r\n            allowing the use of shorter names for constraints and\r\n            asserts and avoiding conflict with the definition of \r\n            <see cref=\"T:NUnit.Framework.Is\"/>, from which it inherits much of its\r\n            behavior, in certain mock object frameworks.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure. Works\r\n            identically to Assert.That\r\n            </summary>\r\n            <param name=\"constraint\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure. Works\r\n            identically to Assert.That.\r\n            </summary>\r\n            <param name=\"constraint\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure. Works\r\n            identically to Assert.That\r\n            </summary>\r\n            <param name=\"constraint\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"constraint\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"constraint\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an assertion exception on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>. Works Identically to Assert.That.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>. Works Identically to Assert.That.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/>. Works Identically Assert.That.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Asserts that the code represented by a delegate throws an exception\r\n            that satisfies the constraint provided.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate to be executed</param>\r\n            <param name=\"constraint\">A ThrowsConstraint used in the test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)\">\r\n            <summary>\r\n            Returns a ListMapper based on a collection.\r\n            </summary>\r\n            <param name=\"original\">The original collection</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Assume\">\r\n            <summary>\r\n            Provides static methods to express the assumptions\r\n            that must be met for a test to give a meaningful\r\n            result. If an assumption is not met, the test\r\n            should produce an inconclusive result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to an actual value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"del\">An ActualValueDelegate returning the value to be tested</param>\r\n            <param name=\"expr\">A Constraint expression to be applied</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])\">\r\n            <summary>\r\n            Apply a constraint to a referenced value, succeeding if the constraint\r\n            is satisfied and throwing an InconclusiveException on failure.\r\n            </summary>\r\n            <param name=\"expression\">A Constraint expression to be applied</param>\r\n            <param name=\"actual\">The actual value to test</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Boolean,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.InconclusiveException\"/>.\r\n            </summary> \r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Boolean,System.String)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the method throws\r\n            an <see cref=\"T:NUnit.Framework.InconclusiveException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n            <param name=\"message\">The message to display if the condition is false</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(System.Boolean)\">\r\n            <summary>\r\n            Asserts that a condition is true. If the condition is false the \r\n            method throws an <see cref=\"T:NUnit.Framework.InconclusiveException\"/>.\r\n            </summary>\r\n            <param name=\"condition\">The evaluated condition</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)\">\r\n            <summary>\r\n            Asserts that the code represented by a delegate throws an exception\r\n            that satisfies the constraint provided.\r\n            </summary>\r\n            <param name=\"code\">A TestDelegate to be executed</param>\r\n            <param name=\"constraint\">A ThrowsConstraint used in the test</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.CollectionAssert\">\r\n            <summary>\r\n            A set of Assert methods operationg on one or more collections\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)\">\r\n            <summary>\r\n            Asserts that all items contained in collection are of the type specified by expectedType.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable containing objects to be considered</param>\r\n            <param name=\"expectedType\">System.Type that all objects in collection must be instances of</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)\">\r\n            <summary>\r\n            Asserts that all items contained in collection are of the type specified by expectedType.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable containing objects to be considered</param>\r\n            <param name=\"expectedType\">System.Type that all objects in collection must be instances of</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that all items contained in collection are of the type specified by expectedType.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable containing objects to be considered</param>\r\n            <param name=\"expectedType\">System.Type that all objects in collection must be instances of</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that all items contained in collection are not equal to null.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable containing objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that all items contained in collection are not equal to null.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable containing objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that all items contained in collection are not equal to null.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Ensures that every object contained in collection exists within the collection\r\n            once and only once.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Ensures that every object contained in collection exists within the collection\r\n            once and only once.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Ensures that every object contained in collection exists within the collection\r\n            once and only once.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are exactly equal.  The collections must have the same count, \r\n            and contain the exact same objects in the same order.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are not exactly equal.\r\n            If comparer is not null then it will be used to compare the objects.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"comparer\">The IComparer to use in comparing objects from each IEnumerable</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that expected and actual are not equivalent.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that expected and actual are not equivalent.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that expected and actual are not equivalent.\r\n            </summary>\r\n            <param name=\"expected\">The first IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">The second IEnumerable of objects to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object)\">\r\n            <summary>\r\n            Asserts that collection contains actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object to be found within collection</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that collection contains actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object to be found within collection</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that collection contains actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object to be found within collection</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object)\">\r\n            <summary>\r\n            Asserts that collection does not contain actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object that cannot exist within collection</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)\">\r\n            <summary>\r\n            Asserts that collection does not contain actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object that cannot exist within collection</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that collection does not contain actual as an item.\r\n            </summary>\r\n            <param name=\"collection\">IEnumerable of objects to be considered</param>\r\n            <param name=\"actual\">Object that cannot exist within collection</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that superset is not a subject of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that superset is not a subject of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that superset is not a subject of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Asserts that superset is a subset of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Asserts that superset is a subset of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that superset is a subset of subset.\r\n            </summary>\r\n            <param name=\"subset\">The IEnumerable superset to be considered</param>\r\n            <param name=\"superset\">The IEnumerable subset to be considered</param>\r\n            <param name=\"message\">The message that will be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Assert that an array,list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Assert that an array,list or other collection is empty\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"comparer\">A custom comparer to perform the comparisons</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"comparer\">A custom comparer to perform the comparisons</param>\r\n            <param name=\"message\">The message to be displayed on failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)\">\r\n            <summary>\r\n            Assert that an array, list or other collection is ordered\r\n            </summary>\r\n            <param name=\"collection\">An array, list or other collection implementing IEnumerable</param>\r\n            <param name=\"comparer\">A custom comparer to perform the comparisons</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Contains\">\r\n            <summary>\r\n            Static helper class used in the constraint-based syntax\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Contains.Substring(System.String)\">\r\n            <summary>\r\n            Creates a new SubstringConstraint\r\n            </summary>\r\n            <param name=\"substring\">The value of the substring</param>\r\n            <returns>A SubstringConstraint</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Contains.Item(System.Object)\">\r\n            <summary>\r\n            Creates a new CollectionContainsConstraint.\r\n            </summary>\r\n            <param name=\"item\">The item that should be found.</param>\r\n            <returns>A new CollectionContainsConstraint</returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.DirectoryAssert\">\r\n            <summary>\r\n            Summary description for DirectoryAssert\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.#ctor\">\r\n            <summary>\r\n            We don't actually want any instances of this object, but some people\r\n            like to inherit from it to add other static methods. Hence, the\r\n            protected constructor disallows any instances of this object. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)\">\r\n            <summary>\r\n            Verifies that two directories are equal.  Two directories are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory containing the value that is expected</param>\r\n            <param name=\"actual\">A directory containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n            <param name=\"message\">The message to display if directories are equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two directories are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A directory path string containing the value that is expected</param>\r\n            <param name=\"actual\">A directory path string containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)\">\r\n            <summary>\r\n            Asserts that the directory is empty. If it is not empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"message\">The message to display if directories are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)\">\r\n            <summary>\r\n            Asserts that the directory is not empty. If it is empty\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that path contains actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n            <param name=\"message\">The message to display if directory is not within the path</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that path does not contain actual as a subdirectory or\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"directory\">A directory to search</param>\r\n            <param name=\"actual\">sub-directory asserted to exist under directory</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.FileAssert\">\r\n            <summary>\r\n            Summary description for FileAssert.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.#ctor\">\r\n            <summary>\r\n            We don't actually want any instances of this object, but some people\r\n            like to inherit from it to add other static methods. Hence, the\r\n            protected constructor disallows any instances of this object. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two Streams are equal.  Two Streams are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n            <param name=\"message\">The message to display if Streams are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)\">\r\n            <summary>\r\n            Verifies that two Streams are equal.  Two Streams are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n            <param name=\"message\">The message to display if objects are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)\">\r\n            <summary>\r\n            Verifies that two Streams are equal.  Two Streams are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n            <param name=\"message\">The message to display if Streams are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n            <param name=\"message\">The message to display if objects are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n            <param name=\"message\">The message to display if Streams are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n            <param name=\"message\">The message to display if objects are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)\">\r\n            <summary>\r\n            Verifies that two files are equal.  Two files are considered\r\n            equal if both are null, or if both have the same value byte for byte.\r\n            If they are not equal an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two Streams are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n            <param name=\"message\">The message to be displayed when the two Stream are the same.</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)\">\r\n            <summary>\r\n            Asserts that two Streams are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n            <param name=\"message\">The message to be displayed when the Streams are the same.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)\">\r\n            <summary>\r\n            Asserts that two Streams are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The expected Stream</param>\r\n            <param name=\"actual\">The actual Stream</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n            <param name=\"message\">The message to display if Streams are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n            <param name=\"message\">The message to display if objects are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">A file containing the value that is expected</param>\r\n            <param name=\"actual\">A file containing the actual value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n            <param name=\"message\">The message to display if Streams are not equal</param>\r\n            <param name=\"args\">Arguments to be used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n            <param name=\"message\">The message to display if objects are not equal</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two files are not equal. If they are equal\r\n            an <see cref=\"T:NUnit.Framework.AssertionException\"/> is thrown.\r\n            </summary>\r\n            <param name=\"expected\">The path to a file containing the value that is expected</param>\r\n            <param name=\"actual\">The path to a file containing the actual value</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.GlobalSettings\">\r\n            <summary>\r\n            GlobalSettings is a place for setting default values used\r\n            by the framework in performing asserts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance\">\r\n            <summary>\r\n            Default tolerance for floating point equality\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Has\">\r\n            <summary>\r\n            Helper class with properties and methods that supply\r\n            a number of constraints used in Asserts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Has.Exactly(System.Int32)\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding only if a specified number of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Has.Property(System.String)\">\r\n            <summary>\r\n            Returns a new PropertyConstraintExpression, which will either\r\n            test for the existence of the named property on the object\r\n            being tested or apply any following constraint to that property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Has.Attribute(System.Type)\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Has.Attribute``1\">\r\n            <summary>\r\n            Returns a new AttributeConstraint checking for the\r\n            presence of a particular attribute on an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Has.Member(System.Object)\">\r\n            <summary>\r\n            Returns a new CollectionContainsConstraint checking for the\r\n            presence of a particular object in the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.No\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.All\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.Some\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if at least one of them succeeds.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.None\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them fail.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.Length\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Length property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.Count\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Count property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.Message\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the Message property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Has.InnerException\">\r\n            <summary>\r\n            Returns a new ConstraintExpression, which will apply the following\r\n            constraint to the InnerException property of the object being tested.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.IExpectException\">\r\n            <summary>\r\n            Interface implemented by a user fixture in order to\r\n            validate any expected exceptions. It is only called\r\n            for test methods marked with the ExpectedException\r\n            attribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.IExpectException.HandleException(System.Exception)\">\r\n            <summary>\r\n            Method to handle an expected exception\r\n            </summary>\r\n            <param name=\"ex\">The exception to be handled</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Is\">\r\n            <summary>\r\n            Helper class with properties and methods that supply\r\n            a number of constraints used in Asserts.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.EqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests two items for equality\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.SameAs(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests that two references are the same object\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.GreaterThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AtLeast(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is greater than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.LessThan(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AtMost(System.Object)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the\r\n            actual value is less than or equal to the suppled argument\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.TypeOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.TypeOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual\r\n            value is of the exact type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.InstanceOf(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.InstanceOf``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.InstanceOfType(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.InstanceOfType``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is of the type supplied as an argument or a derived type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AssignableFrom(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AssignableFrom``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AssignableTo(System.Type)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.AssignableTo``1\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is assignable from the type supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a collection containing the same elements as the \r\n            collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value\r\n            is a subset of the collection supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.StringContaining(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.StringStarting(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.StringEnding(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.StringMatching(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.SamePath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same as an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.SubPath(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.SamePathOrUnder(System.String)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the path provided \r\n            is the same path or under an expected path after canonicalization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Is.InRange``1(``0,``0)\">\r\n            <summary>\r\n            Returns a constraint that tests whether the actual value falls \r\n            within a specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Not\">\r\n            <summary>\r\n            Returns a ConstraintExpression that negates any\r\n            following constraint.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.All\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Null\">\r\n            <summary>\r\n            Returns a constraint that tests for null\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.True\">\r\n            <summary>\r\n            Returns a constraint that tests for True\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.False\">\r\n            <summary>\r\n            Returns a constraint that tests for False\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Positive\">\r\n            <summary>\r\n            Returns a constraint that tests for a positive value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Negative\">\r\n            <summary>\r\n            Returns a constraint that tests for a negative value\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.NaN\">\r\n            <summary>\r\n            Returns a constraint that tests for NaN\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Empty\">\r\n            <summary>\r\n            Returns a constraint that tests for empty\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Unique\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection \r\n            contains all unique items.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.BinarySerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in binary format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.XmlSerializable\">\r\n            <summary>\r\n            Returns a constraint that tests whether an object graph is serializable in xml format.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Is.Ordered\">\r\n            <summary>\r\n            Returns a constraint that tests whether a collection is ordered\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Iz\">\r\n            <summary>\r\n            The Iz class is a synonym for Is intended for use in VB,\r\n            which regards Is as a keyword.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.List\">\r\n            <summary>\r\n            The List class is a helper class with properties and methods\r\n            that supply a number of constraints used with lists and collections.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.List.Map(System.Collections.ICollection)\">\r\n            <summary>\r\n            List.Map returns a ListMapper, which can be used to map\r\n            the original collection to another collection.\r\n            </summary>\r\n            <param name=\"actual\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.ListMapper\">\r\n            <summary>\r\n            ListMapper is used to transform a collection used as an actual argument\r\n            producing another collection to be used in the assertion.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)\">\r\n            <summary>\r\n            Construct a ListMapper based on a collection\r\n            </summary>\r\n            <param name=\"original\">The collection to be transformed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.ListMapper.Property(System.String)\">\r\n            <summary>\r\n            Produces a collection containing all the values of a property\r\n            </summary>\r\n            <param name=\"name\">The collection of property values</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Randomizer\">\r\n            <summary>\r\n            Randomizer returns a set of random values in a repeatable\r\n            way, to allow re-running of tests if necessary.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Get a randomizer for a particular member, returning\r\n            one that has already been created if it exists.\r\n            This ensures that the same values are generated\r\n            each time the tests are reloaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Get a randomizer for a particular parameter, returning\r\n            one that has already been created if it exists.\r\n            This ensures that the same values are generated\r\n            each time the tests are reloaded.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.#ctor\">\r\n            <summary>\r\n            Construct a randomizer using a random seed\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.#ctor(System.Int32)\">\r\n            <summary>\r\n            Construct a randomizer using a specified seed\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)\">\r\n            <summary>\r\n            Return an array of random doubles between 0.0 and 1.0.\r\n            </summary>\r\n            <param name=\"count\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)\">\r\n            <summary>\r\n            Return an array of random doubles with values in a specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Return an array of random ints with values in a specified range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Randomizer.RandomSeed\">\r\n            <summary>\r\n            Get a random seed for use in creating a randomizer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.SpecialValue\">\r\n            <summary>\r\n            The SpecialValue enum is used to represent TestCase arguments\r\n            that cannot be used as arguments to an Attribute.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.SpecialValue.Null\">\r\n            <summary>\r\n            Null represents a null value, which cannot be used as an \r\n            argument to an attriute under .NET 1.x\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.StringAssert\">\r\n            <summary>\r\n            Basic Asserts on strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)\">\r\n            <summary>\r\n            The Equals method throws an AssertionException. This is done \r\n            to make sure there is no mistake by calling this function.\r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)\">\r\n            <summary>\r\n            override the default ReferenceEquals to throw an AssertionException. This \r\n            implementation makes sure there is no mistake in calling this function \r\n            as part of Assert. \r\n            </summary>\r\n            <param name=\"a\"></param>\r\n            <param name=\"b\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string is found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string is found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.Contains(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string is found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string is not found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string is found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string is found within another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string starts with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string starts with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string starts with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string does not start with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not start with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not start with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string ends with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string ends with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string ends with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string does not end with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not end with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not end with another string.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The string to be examined</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two strings are equal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two strings are equal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two strings are equal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that two strings are not equal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two strings are Notequal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that two strings are not equal, without regard to case.\r\n            </summary>\r\n            <param name=\"expected\">The expected string</param>\r\n            <param name=\"actual\">The actual string</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string matches an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be matched</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string matches an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be matched</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string matches an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be matched</param>\r\n            <param name=\"actual\">The actual string</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])\">\r\n            <summary>\r\n            Asserts that a string does not match an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be used</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n            <param name=\"args\">Arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not match an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be used</param>\r\n            <param name=\"actual\">The actual string</param>\r\n            <param name=\"message\">The message to display in case of failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)\">\r\n            <summary>\r\n            Asserts that a string does not match an expected regular expression pattern.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern to be used</param>\r\n            <param name=\"actual\">The actual string</param>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestCaseData\">\r\n            <summary>\r\n            The TestCaseData class represents a set of arguments\r\n            and other parameter info to be used for a parameterized\r\n            test case. It provides a number of instance modifiers\r\n            for use in initializing the test case.\r\n            \r\n            Note: Instance modifiers are getters that return\r\n            the same instance after modifying it's state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.arguments\">\r\n            <summary>\r\n            The argument list to be provided to the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.expectedResult\">\r\n            <summary>\r\n            The expected result to be returned\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.hasExpectedResult\">\r\n            <summary>\r\n            Set to true if this has an expected result\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.expectedExceptionType\">\r\n            <summary>\r\n             The expected exception Type\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.expectedExceptionName\">\r\n            <summary>\r\n            The FullName of the expected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.testName\">\r\n            <summary>\r\n            The name to be used for the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.description\">\r\n            <summary>\r\n            The description of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.properties\">\r\n            <summary>\r\n            A dictionary of properties, used to add information\r\n            to tests without requiring the class to change.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.isIgnored\">\r\n            <summary>\r\n            If true, indicates that the test case is to be ignored\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.isExplicit\">\r\n            <summary>\r\n            If true, indicates that the test case is marked explicit\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestCaseData.ignoreReason\">\r\n            <summary>\r\n            The reason for ignoring a test case\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:TestCaseData\"/> class.\r\n            </summary>\r\n            <param name=\"args\">The arguments.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:TestCaseData\"/> class.\r\n            </summary>\r\n            <param name=\"arg\">The argument.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:TestCaseData\"/> class.\r\n            </summary>\r\n            <param name=\"arg1\">The first argument.</param>\r\n            <param name=\"arg2\">The second argument.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:TestCaseData\"/> class.\r\n            </summary>\r\n            <param name=\"arg1\">The first argument.</param>\r\n            <param name=\"arg2\">The second argument.</param>\r\n            <param name=\"arg3\">The third argument.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.Returns(System.Object)\">\r\n            <summary>\r\n            Sets the expected result for the test\r\n            </summary>\r\n            <param name=\"result\">The expected result</param>\r\n            <returns>A modified TestCaseData</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.Throws(System.Type)\">\r\n            <summary>\r\n            Sets the expected exception type for the test\r\n            </summary>\r\n            <param name=\"exceptionType\">Type of the expected exception.</param>\r\n            <returns>The modified TestCaseData instance</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.Throws(System.String)\">\r\n            <summary>\r\n            Sets the expected exception type for the test\r\n            </summary>\r\n            <param name=\"exceptionName\">FullName of the expected exception.</param>\r\n            <returns>The modified TestCaseData instance</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetName(System.String)\">\r\n            <summary>\r\n            Sets the name of the test case\r\n            </summary>\r\n            <returns>The modified TestCaseData instance</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetDescription(System.String)\">\r\n            <summary>\r\n            Sets the description for the test case\r\n            being constructed.\r\n            </summary>\r\n            <param name=\"description\">The description.</param>\r\n            <returns>The modified TestCaseData instance.</returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetCategory(System.String)\">\r\n            <summary>\r\n            Applies a category to the test\r\n            </summary>\r\n            <param name=\"category\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)\">\r\n            <summary>\r\n            Applies a named property to the test\r\n            </summary>\r\n            <param name=\"propName\"></param>\r\n            <param name=\"propValue\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)\">\r\n            <summary>\r\n            Applies a named property to the test\r\n            </summary>\r\n            <param name=\"propName\"></param>\r\n            <param name=\"propValue\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)\">\r\n            <summary>\r\n            Applies a named property to the test\r\n            </summary>\r\n            <param name=\"propName\"></param>\r\n            <param name=\"propValue\"></param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.Ignore\">\r\n            <summary>\r\n            Ignores this TestCase.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.Ignore(System.String)\">\r\n            <summary>\r\n            Ignores this TestCase, specifying the reason.\r\n            </summary>\r\n            <param name=\"reason\">The reason.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.MakeExplicit\">\r\n            <summary>\r\n            Marks this TestCase as Explicit\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestCaseData.MakeExplicit(System.String)\">\r\n            <summary>\r\n            Marks this TestCase as Explicit, specifying the reason.\r\n            </summary>\r\n            <param name=\"reason\">The reason.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Arguments\">\r\n            <summary>\r\n            Gets the argument list to be provided to the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Result\">\r\n            <summary>\r\n            Gets the expected result\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.HasExpectedResult\">\r\n            <summary>\r\n            Returns true if the result has been set\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.ExpectedException\">\r\n            <summary>\r\n             Gets the expected exception Type\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.ExpectedExceptionName\">\r\n            <summary>\r\n            Gets the FullName of the expected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.TestName\">\r\n            <summary>\r\n            Gets the name to be used for the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Description\">\r\n            <summary>\r\n            Gets the description of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:NUnit.Framework.ITestCaseData\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Explicit\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:NUnit.Framework.ITestCaseData\"/> is explicit.\r\n            </summary>\r\n            <value><c>true</c> if explicit; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.IgnoreReason\">\r\n            <summary>\r\n            Gets the ignore reason.\r\n            </summary>\r\n            <value>The ignore reason.</value>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Categories\">\r\n            <summary>\r\n            Gets a list of categories associated with this test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestCaseData.Properties\">\r\n            <summary>\r\n            Gets the property dictionary for this test\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestContext\">\r\n            <summary>\r\n            Provide the context information of the current test\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestContext.#ctor(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Constructs a TestContext using the provided context dictionary\r\n            </summary>\r\n            <param name=\"context\">A context dictionary</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.CurrentContext\">\r\n            <summary>\r\n            Get the current test context. This is created\r\n            as needed. The user may save the context for\r\n            use within a test, but it should not be used\r\n            outside the test for which it is created.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.Test\">\r\n            <summary>\r\n            Gets a TestAdapter representing the currently executing test in this context.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.Result\">\r\n            <summary>\r\n            Gets a ResultAdapter representing the current result for the test \r\n            executing in this context.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.TestDirectory\">\r\n            <summary>\r\n            Gets the directory containing the current test assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.WorkDirectory\">\r\n            <summary>\r\n            Gets the directory to be used for outputing files created\r\n            by this test run.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestContext.TestAdapter\">\r\n            <summary>\r\n            TestAdapter adapts a Test for consumption by\r\n            the user test code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestContext.TestAdapter.#ctor(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Constructs a TestAdapter for this context\r\n            </summary>\r\n            <param name=\"context\">The context dictionary</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.TestAdapter.Name\">\r\n            <summary>\r\n            The name of the test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.TestAdapter.FullName\">\r\n            <summary>\r\n            The FullName of the test\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.TestAdapter.Properties\">\r\n            <summary>\r\n            The properties of the test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestContext.ResultAdapter\">\r\n            <summary>\r\n            ResultAdapter adapts a TestResult for consumption by\r\n            the user test code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestContext.ResultAdapter.#ctor(System.Collections.IDictionary)\">\r\n            <summary>\r\n            Construct a ResultAdapter for a context\r\n            </summary>\r\n            <param name=\"context\">The context holding the result</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.ResultAdapter.State\">\r\n            <summary>\r\n            The TestState of current test. This maps to the ResultState\r\n            used in nunit.core and is subject to change in the future.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestContext.ResultAdapter.Status\">\r\n            <summary>\r\n            The TestStatus of current test. This enum will be used\r\n            in future versions of NUnit and so is to be preferred\r\n            to the TestState value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestDetails\">\r\n            <summary>\r\n            Provides details about a test\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TestDetails.#ctor(System.Object,System.Reflection.MethodInfo,System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n             Creates an instance of TestDetails\r\n            </summary>\r\n            <param name=\"fixture\">The fixture that the test is a member of, if available.</param>\r\n            <param name=\"method\">The method that implements the test, if available.</param>\r\n            <param name=\"fullName\">The full name of the test.</param>\r\n            <param name=\"type\">A string representing the type of test, e.g. \"Test Case\".</param>\r\n            <param name=\"isSuite\">Indicates if the test represents a suite of tests.</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestDetails.Fixture\">\r\n            <summary>\r\n             The fixture that the test is a member of, if available.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestDetails.Method\">\r\n            <summary>\r\n            The method that implements the test, if available.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestDetails.FullName\">\r\n            <summary>\r\n            The full name of the test.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestDetails.Type\">\r\n            <summary>\r\n            A string representing the type of test, e.g. \"Test Case\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TestDetails.IsSuite\">\r\n            <summary>\r\n            Indicates if the test represents a suite of tests.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestState\">\r\n            <summary>\r\n            The ResultState enum indicates the result of running a test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Inconclusive\">\r\n            <summary>\r\n            The result is inconclusive\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.NotRunnable\">\r\n            <summary>\r\n            The test was not runnable.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Skipped\">\r\n            <summary>\r\n            The test has been skipped. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Ignored\">\r\n            <summary>\r\n            The test has been ignored.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Success\">\r\n            <summary>\r\n            The test succeeded\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Failure\">\r\n            <summary>\r\n            The test failed\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Error\">\r\n            <summary>\r\n            The test encountered an unexpected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestState.Cancelled\">\r\n            <summary>\r\n            The test was cancelled by the user\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TestStatus\">\r\n            <summary>\r\n            The TestStatus enum indicates the result of running a test\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestStatus.Inconclusive\">\r\n            <summary>\r\n            The test was inconclusive\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestStatus.Skipped\">\r\n            <summary>\r\n            The test has skipped \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestStatus.Passed\">\r\n            <summary>\r\n            The test succeeded\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TestStatus.Failed\">\r\n            <summary>\r\n            The test failed\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Text\">\r\n            <summary>\r\n            Helper class with static methods used to supply constraints\r\n            that operate on strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.Contains(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.DoesNotContain(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value contains the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.StartsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.DoesNotStartWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value starts with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.EndsWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.DoesNotEndWith(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value ends with the substring supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.Matches(System.String)\">\r\n            <summary>\r\n            Returns a constraint that succeeds if the actual\r\n            value matches the Regex pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Text.DoesNotMatch(System.String)\">\r\n            <summary>\r\n            Returns a constraint that fails if the actual\r\n            value matches the pattern supplied as an argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Text.All\">\r\n            <summary>\r\n            Returns a ConstraintExpression, which will apply\r\n            the following constraint to all members of a collection,\r\n            succeeding if all of them succeed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.TextMessageWriter\">\r\n            <summary>\r\n            TextMessageWriter writes constraint descriptions and messages\r\n            in displayable form as a text stream. It tailors the display\r\n            of individual message components to form the standard message\r\n            format of NUnit assertion failure messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TextMessageWriter.Pfx_Expected\">\r\n            <summary>\r\n            Prefix used for the expected value line of a message\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TextMessageWriter.Pfx_Actual\">\r\n            <summary>\r\n            Prefix used for the actual value line of a message\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:NUnit.Framework.TextMessageWriter.PrefixLength\">\r\n            <summary>\r\n            Length of a message prefix\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.#ctor\">\r\n            <summary>\r\n            Construct a TextMessageWriter\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Construct a TextMessageWriter, specifying a user message\r\n            and optional formatting arguments.\r\n            </summary>\r\n            <param name=\"userMessage\"></param>\r\n            <param name=\"args\"></param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])\">\r\n            <summary>\r\n            Method to write single line  message with optional args, usually\r\n            written to precede the general failure message, at a givel \r\n            indentation level.\r\n            </summary>\r\n            <param name=\"level\">The indentation level of the message</param>\r\n            <param name=\"message\">The message to be written</param>\r\n            <param name=\"args\">Any arguments used in formatting the message</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Display Expected and Actual lines for a constraint. This\r\n            is called by MessageWriter's default implementation of \r\n            WriteMessageTo and provides the generic two-line display. \r\n            </summary>\r\n            <param name=\"constraint\">The constraint that failed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)\">\r\n            <summary>\r\n            Display Expected and Actual lines for given values. This\r\n            method may be called by constraints that need more control over\r\n            the display of actual and expected values than is provided\r\n            by the default implementation.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value causing the failure</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)\">\r\n            <summary>\r\n            Display Expected and Actual lines for given values, including\r\n            a tolerance value on the expected line.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"actual\">The actual value causing the failure</param>\r\n            <param name=\"tolerance\">The tolerance within which the test was made</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Display the expected and actual string values on separate lines.\r\n            If the mismatch parameter is >=0, an additional line is displayed\r\n            line containing a caret that points to the mismatch point.\r\n            </summary>\r\n            <param name=\"expected\">The expected string value</param>\r\n            <param name=\"actual\">The actual string value</param>\r\n            <param name=\"mismatch\">The point at which the strings don't match or -1</param>\r\n            <param name=\"ignoreCase\">If true, case is ignored in string comparisons</param>\r\n            <param name=\"clipping\">If true, clip the strings to fit the max line length</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)\">\r\n            <summary>\r\n            Writes the text for a connector.\r\n            </summary>\r\n            <param name=\"connector\">The connector.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)\">\r\n            <summary>\r\n            Writes the text for a predicate.\r\n            </summary>\r\n            <param name=\"predicate\">The predicate.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)\">\r\n            <summary>\r\n            Write the text for a modifier.\r\n            </summary>\r\n            <param name=\"modifier\">The modifier.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for an expected value.\r\n            </summary>\r\n            <param name=\"expected\">The expected value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for an actual value.\r\n            </summary>\r\n            <param name=\"actual\">The actual value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes the text for a generalized value.\r\n            </summary>\r\n            <param name=\"val\">The value.</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.IEnumerable,System.Int32,System.Int32)\">\r\n            <summary>\r\n            Writes the text for a collection value,\r\n            starting at a particular point, to a max length\r\n            </summary>\r\n            <param name=\"collection\">The collection containing elements to write.</param>\r\n            <param name=\"start\">The starting point of the elements to write</param>\r\n            <param name=\"max\">The maximum number of elements to write</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Write the generic 'Expected' line for a constraint\r\n            </summary>\r\n            <param name=\"constraint\">The constraint that failed</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)\">\r\n            <summary>\r\n            Write the generic 'Expected' line for a given value\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)\">\r\n            <summary>\r\n            Write the generic 'Expected' line for a given value\r\n            and tolerance.\r\n            </summary>\r\n            <param name=\"expected\">The expected value</param>\r\n            <param name=\"tolerance\">The tolerance within which the test was made</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)\">\r\n            <summary>\r\n            Write the generic 'Actual' line for a constraint\r\n            </summary>\r\n            <param name=\"constraint\">The constraint for which the actual value is to be written</param>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)\">\r\n            <summary>\r\n            Write the generic 'Actual' line for a given value\r\n            </summary>\r\n            <param name=\"actual\">The actual value causing a failure</param>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.TextMessageWriter.MaxLineLength\">\r\n            <summary>\r\n            Gets or sets the maximum line length for this writer\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:NUnit.Framework.Throws\">\r\n            <summary>\r\n            Helper class with properties and methods that supply\r\n            constraints that operate on exceptions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Throws.TypeOf(System.Type)\">\r\n            <summary>\r\n            Creates a constraint specifying the exact type of exception expected\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Throws.TypeOf``1\">\r\n            <summary>\r\n            Creates a constraint specifying the exact type of exception expected\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Throws.InstanceOf(System.Type)\">\r\n            <summary>\r\n            Creates a constraint specifying the type of exception expected\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:NUnit.Framework.Throws.InstanceOf``1\">\r\n            <summary>\r\n            Creates a constraint specifying the type of exception expected\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.Exception\">\r\n            <summary>\r\n            Creates a constraint specifying an expected exception\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.InnerException\">\r\n            <summary>\r\n            Creates a constraint specifying an exception with a given InnerException\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.TargetInvocationException\">\r\n            <summary>\r\n            Creates a constraint specifying an expected TargetInvocationException\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.ArgumentException\">\r\n            <summary>\r\n            Creates a constraint specifying an expected TargetInvocationException\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.InvalidOperationException\">\r\n            <summary>\r\n            Creates a constraint specifying an expected TargetInvocationException\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:NUnit.Framework.Throws.Nothing\">\r\n            <summary>\r\n            Creates a constraint specifying that no exception is thrown\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/NUnit.2.6.1/license.txt",
    "content": "Copyright  2002-2012 Charlie Poole\r\nCopyright  2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov\r\nCopyright  2000-2002 Philip A. Craig\r\n\r\nThis software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.\r\n\r\nPermission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:\r\n\r\n1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required.\r\n\r\nPortions Copyright  2002-2012 Charlie Poole or Copyright  2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright  2000-2002 Philip A. Craig\r\n\r\n2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\r\n\r\n3. This notice may not be removed or altered from any source distribution.\r\n"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/license.txt",
    "content": "Copyright  2002-2012 Charlie Poole\r\nCopyright  2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov\r\nCopyright  2000-2002 Philip A. Craig\r\n\r\nThis software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.\r\n\r\nPermission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:\r\n\r\n1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required.\r\n\r\nPortions Copyright  2002-2012 Charlie Poole or Copyright  2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright  2000-2002 Philip A. Craig\r\n\r\n2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.\r\n\r\n3. This notice may not be removed or altered from any source distribution.\r\n"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/agent.conf",
    "content": "<AgentConfig>\r\n  <Port>8080</Port>\r\n  <PathToAssemblies>.</PathToAssemblies>\r\n</AgentConfig>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/agent.log.conf",
    "content": "<log4net>\r\n\t<!-- A1 is set to be a ConsoleAppender -->\r\n\t<appender name=\"A1\" type=\"log4net.Appender.ConsoleAppender\">\r\n\r\n\t\t<!-- A1 uses PatternLayout -->\r\n\t\t<layout type=\"log4net.Layout.PatternLayout\">\r\n\t\t\t<!-- Print the date in ISO 8601 format -->\r\n\t\t\t<conversionPattern value=\"%-5level %logger - %message%newline\" />\r\n\t\t</layout>\r\n\t</appender>\r\n\t\r\n\t<!-- Set root logger level to DEBUG and its only appender to A1 -->\r\n\t<root>\r\n\t\t<level value=\"Info\" />\r\n\t\t<appender-ref ref=\"A1\" />\r\n\t</root>\r\n\r\n</log4net>\r\n"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/launcher.log.conf",
    "content": "<log4net>\r\n\t<!-- A1 is set to be a ConsoleAppender -->\r\n\t<appender name=\"A1\" type=\"log4net.Appender.ConsoleAppender\">\r\n\r\n\t\t<!-- A1 uses PatternLayout -->\r\n\t\t<layout type=\"log4net.Layout.PatternLayout\">\r\n\t\t\t<!-- Print the date in ISO 8601 format -->\r\n\t\t\t<conversionPattern value=\"%-5level %logger - %message%newline\" />\r\n\t\t</layout>\r\n\t</appender>\r\n\t\r\n\t<!-- Set root logger level to DEBUG and its only appender to A1 -->\r\n\t<root>\r\n\t\t<level value=\"Info\" />\r\n\t\t<appender-ref ref=\"A1\" />\r\n\t</root>\r\n\r\n</log4net>\r\n"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit-agent-x86.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The .NET 2.0 build of nunit-agent only \r\n   runs under .NET 2.0 or higher. The setting\r\n   useLegacyV2RuntimeActivationPolicy only applies \r\n   under .NET 4.0 and permits use of mixed mode \r\n   assemblies, which would otherwise not load \r\n   correctly. \r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!--\r\n     Nunit-agent is normally run by the console or gui\r\n     runners and not independently. In normal usage, \r\n     the runner specifies which runtime should be used.\r\n     \r\n     Do NOT add any supportedRuntime elements here, \r\n     since they may prevent the runner from controlling \r\n     the runtime that is used!\r\n    -->\r\n  </startup>\r\n\r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit-agent.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The .NET 2.0 build of nunit-agent only \r\n   runs under .NET 2.0 or higher. The setting\r\n   useLegacyV2RuntimeActivationPolicy only applies \r\n   under .NET 4.0 and permits use of mixed mode \r\n   assemblies, which would otherwise not load \r\n   correctly. \r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!--\r\n     Nunit-agent is normally run by the console or gui\r\n     runners and not independently. In normal usage, \r\n     the runner specifies which runtime should be used.\r\n     \r\n     Do NOT add any supportedRuntime elements here, \r\n     since they may prevent the runner from controlling \r\n     the runtime that is used!\r\n    -->\r\n  </startup>\r\n\r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit-console-x86.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The .NET 2.0 build of the console runner only \r\n   runs under .NET 2.0 or higher. The setting\r\n   useLegacyV2RuntimeActivationPolicy only applies \r\n   under .NET 4.0 and permits use of mixed mode \r\n   assemblies, which would otherwise not load \r\n   correctly.\r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!-- Comment out the next line to force use of .NET 4.0 -->\r\n    <supportedRuntime version=\"v2.0.50727\" />\r\n    <supportedRuntime version=\"v4.0.30319\" />\r\n  </startup>\r\n\r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit-console.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The .NET 2.0 build of the console runner only \r\n   runs under .NET 2.0 or higher. The setting\r\n   useLegacyV2RuntimeActivationPolicy only applies \r\n   under .NET 4.0 and permits use of mixed mode \r\n   assemblies, which would otherwise not load \r\n   correctly.\r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!-- Comment out the next line to force use of .NET 4.0 -->\r\n    <supportedRuntime version=\"v2.0.50727\" />\r\n    <supportedRuntime version=\"v4.0.30319\" />\r\n  </startup>\r\n\r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit-x86.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The GUI only runs under .NET 2.0 or higher. The\r\n   useLegacyV2RuntimeActivationPolicy setting only\r\n   applies under .NET 4.0 and permits use of mixed \r\n   mode assemblies, which would otherwise not load \r\n   correctly.\r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!-- Comment out the next line to force use of .NET 4.0 -->\r\n    <supportedRuntime version=\"v2.0.50727\" />\r\n    <supportedRuntime version=\"v4.0.30319\" />\r\n  </startup>\r\n  \r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n    \r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\" />\r\n    </assemblyBinding>\r\n\r\n  </runtime>\r\n\r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/nunit.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n  <!--\r\n   The GUI only runs under .NET 2.0 or higher. The\r\n   useLegacyV2RuntimeActivationPolicy setting only\r\n   applies under .NET 4.0 and permits use of mixed \r\n   mode assemblies, which would otherwise not load \r\n   correctly.\r\n  -->\r\n  <startup useLegacyV2RuntimeActivationPolicy=\"true\">\r\n    <!-- Comment out the next line to force use of .NET 4.0 -->\r\n    <supportedRuntime version=\"v2.0.50727\" />\r\n    <supportedRuntime version=\"v4.0.30319\" />\r\n  </startup>\r\n  \r\n  <runtime>\r\n    <!-- Ensure that test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->\r\n    <loadFromRemoteSources enabled=\"true\" />\r\n    \r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"lib;addins\" />\r\n    </assemblyBinding>\r\n\r\n  </runtime>\r\n\r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/pnunit-agent.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n\r\n  <!-- Set the level for tracing NUnit itself -->\r\n  <!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->\r\n  <system.diagnostics>\r\n\t  <switches>\r\n      <add name=\"NTrace\" value=\"0\" />\r\n\t  </switches>\r\n  </system.diagnostics>\r\n  \r\n  <runtime>\r\n    <!-- We need this so test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"framework;lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n    <!--\r\n    The following <assemblyBinding> section allows running nunit under \r\n    .NET 1.0 by redirecting assemblies. The appliesTo attribute\r\n    causes the section to be ignored except under .NET 1.0\r\n    on a machine with only the .NET version 1.0 runtime installed.\r\n    If application and its tests were built for .NET 1.1 you will\r\n    also need to redirect system assemblies in the test config file,\r\n    which controls loading of the tests.\r\n   -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\"\r\n\t\t\tappliesTo=\"v1.0.3705\">\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Data\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Drawing\" \r\n                          publicKeyToken=\"b03f5f7f11d50a3a\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Windows.Forms\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Xml\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n    </assemblyBinding>\r\n  \r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/pnunit-launcher.exe.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n\r\n  <!-- Set the level for tracing NUnit itself -->\r\n  <!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->\r\n  <system.diagnostics>\r\n\t  <switches>\r\n      <add name=\"NTrace\" value=\"0\" />\r\n\t  </switches>\r\n  </system.diagnostics>\r\n  \r\n  <runtime>\r\n    <!-- We need this so test exceptions don't crash NUnit -->\r\n    <legacyUnhandledExceptionPolicy enabled=\"1\" />\r\n\r\n    <!-- Look for addins in the addins directory for now -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n      <probing privatePath=\"framework;lib;addins\"/>\r\n   </assemblyBinding>\r\n\r\n    <!--\r\n    The following <assemblyBinding> section allows running nunit under \r\n    .NET 1.0 by redirecting assemblies. The appliesTo attribute\r\n    causes the section to be ignored except under .NET 1.0\r\n    on a machine with only the .NET version 1.0 runtime installed.\r\n    If application and its tests were built for .NET 1.1 you will\r\n    also need to redirect system assemblies in the test config file,\r\n    which controls loading of the tests.\r\n   -->\r\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\"\r\n\t\t\tappliesTo=\"v1.0.3705\">\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Data\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Drawing\" \r\n                          publicKeyToken=\"b03f5f7f11d50a3a\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Windows.Forms\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n      <dependentAssembly> \r\n        <assemblyIdentity name=\"System.Xml\" \r\n                          publicKeyToken=\"b77a5c561934e089\" \r\n                          culture=\"neutral\"/>\r\n        <bindingRedirect  oldVersion=\"1.0.5000.0\" \r\n                          newVersion=\"1.0.3300.0\"/>\r\n      </dependentAssembly>\r\n\r\n    </assemblyBinding>\r\n  \r\n  </runtime>\r\n  \r\n</configuration>"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/runpnunit.bat",
    "content": "start pnunit-agent 8080 .\r\nstart pnunit-agent 8081 .\r\npnunit-launcher test.conf\r\n"
  },
  {
    "path": "packages/NUnit.Runners.2.6.1/tools/test.conf",
    "content": "<TestGroup>\r\n\r\n  <Variables>\r\n    <Variable name=\"$agent_host\" value=\"localhost\" />\r\n  </Variables>\r\n\r\n  <ParallelTests>\r\n    \r\n      <!-- This is really just one test -->\r\n      <ParallelTest>\r\n        <Name>Testing</Name>\r\n        <Tests>\r\n          <TestConf>\r\n            <Name>Testing</Name>\r\n            <Assembly>pnunit.tests.dll</Assembly>\r\n            <TestToRun>TestLibraries.Testing.EqualTo19</TestToRun>\r\n            <Machine>$agent_host:8080</Machine>\r\n          </TestConf>\r\n        </Tests>\r\n      </ParallelTest>\r\n\r\n      <!-- Parallel Test on a single agent - no barriers -->\r\n      <ParallelTest>\r\n        <Name>Parallel_Tests</Name>\r\n        <Tests>\r\n          <TestConf>\r\n            <Name>ParallelTest_A_Test</Name>\r\n            <Assembly>pnunit.tests.dll</Assembly>\r\n            <TestToRun>TestLibraries.ParallelExample.ParallelTest_A</TestToRun>\r\n            <Machine>$agent_host:8080</Machine>\r\n            <TestParams>\r\n              <!-- sleep time in seconds -->\r\n              <string>2</string>\r\n            </TestParams>\r\n          </TestConf>\r\n          <TestConf>\r\n            <Name>ParallelTest_B_Test</Name>\r\n            <Assembly>pnunit.tests.dll</Assembly>\r\n            <TestToRun>TestLibraries.ParallelExample.ParallelTest_B</TestToRun>\r\n            <Machine>$agent_host:8080</Machine>\r\n            <TestParams>\r\n              <string>1</string>\r\n              <!-- sleep time in seconds -->\r\n            </TestParams>\r\n          </TestConf>\r\n        </Tests>\r\n      </ParallelTest>\r\n\r\n      <!-- Parallel Test using two agents - with wait barriers -->\r\n      <ParallelTest>\r\n        <Name>Parallel_Barriers</Name>\r\n        <Tests>\r\n          <TestConf>\r\n            <Name>Parallel_Barriers_TestA</Name>\r\n            <Assembly>pnunit.tests.dll</Assembly>\r\n            <TestToRun>TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersA</TestToRun>\r\n            <Machine>$agent_host:8080</Machine>\r\n            <TestParams>\r\n            </TestParams>\r\n            <WaitBarriers>\r\n              <string>START_BARRIER</string>\r\n              <string>WAIT_BARRIER</string>\r\n            </WaitBarriers>\r\n          </TestConf>\r\n          <TestConf>\r\n            <Name>Parallel_Barriers_TestB</Name>\r\n            <Assembly>pnunit.tests.dll</Assembly>\r\n            <TestToRun>TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersB</TestToRun>\r\n            <Machine>$agent_host:8081</Machine>\r\n            <TestParams>\r\n            </TestParams>\r\n            <WaitBarriers>\r\n              <string>START_BARRIER</string>\r\n              <string>WAIT_BARRIER</string>\r\n            </WaitBarriers>\r\n          </TestConf>\r\n        </Tests>\r\n      </ParallelTest>\r\n    \r\n    </ParallelTests>\r\n  \r\n</TestGroup>"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BinaryConverter\">\r\n            <summary>\r\n            Converts a binary value to and from a base 64 string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataSetConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataSet\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataTableConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataTable\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"!:EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to the application's <see cref=\"T:System.Diagnostics.TraceListener\"/> instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.LinqBridge.Enumerable\">\r\n            <summary>\r\n            Provides a set of static (Shared in Visual Basic) methods for \r\n            querying objects that implement <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.AsEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Empty``1\">\r\n            <summary>\r\n            Returns an empty <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that has the \r\n            specified type argument.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Cast``1(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Converts the elements of an <see cref=\"T:System.Collections.IEnumerable\"/> to the \r\n            specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OfType``1(System.Collections.IEnumerable)\">\r\n            <summary>\r\n            Filters the elements of an <see cref=\"T:System.Collections.IEnumerable\"/> based on a specified type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Range(System.Int32,System.Int32)\">\r\n            <summary>\r\n            Generates a sequence of integral numbers within a specified range.\r\n            </summary>\r\n            <param name=\"start\">The value of the first integer in the sequence.</param>\r\n            <param name=\"count\">The number of sequential integers to generate.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Repeat``1(``0,System.Int32)\">\r\n            <summary>\r\n            Generates a sequence that contains one repeated value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Filters a sequence of values based on a predicate.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Where``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})\">\r\n            <summary>\r\n            Filters a sequence of values based on a predicate. \r\n            Each element's index is used in the logic of the predicate function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Projects each element of a sequence into a new form.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Select``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,``1})\">\r\n            <summary>\r\n            Projects each element of a sequence into a new form by \r\n            incorporating the element's index.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}})\">\r\n            <summary>\r\n            Projects each element of a sequence to an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> \r\n            and flattens the resulting sequences into one sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}})\">\r\n            <summary>\r\n            Projects each element of a sequence to an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>, \r\n            and flattens the resulting sequences into one sequence. The \r\n            index of each source element is used in the projected form of \r\n            that element.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects each element of a sequence to an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>, \r\n            flattens the resulting sequences into one sequence, and invokes \r\n            a result selector function on each element therein.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SelectMany``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Collections.Generic.IEnumerable{``1}},Newtonsoft.Json.Serialization.Func{``0,``1,``2})\">\r\n            <summary>\r\n            Projects each element of a sequence to an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>, \r\n            flattens the resulting sequences into one sequence, and invokes \r\n            a result selector function on each element therein. The index of \r\n            each source element is used in the intermediate projected form \r\n            of that element.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns elements from a sequence as long as a specified condition is true.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.TakeWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})\">\r\n            <summary>\r\n            Returns elements from a sequence as long as a specified condition is true.\r\n            The element's index is used in the logic of the predicate function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})\">\r\n            <summary>\r\n            Base implementation of First operator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the first element of a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.First``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the first element in a sequence that satisfies a specified condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the first element of a sequence, or a default value if \r\n            the sequence contains no elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.FirstOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the first element of the sequence that satisfies a \r\n            condition or a default value if no such element is found.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})\">\r\n            <summary>\r\n            Base implementation of Last operator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the last element of a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Last``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the last element of a sequence that satisfies a \r\n            specified condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the last element of a sequence, or a default value if \r\n            the sequence contains no elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LastOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the last element of a sequence that satisfies a \r\n            condition or a default value if no such element is found.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0})\">\r\n            <summary>\r\n            Base implementation of Single operator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the only element of a sequence, and throws an exception \r\n            if there is not exactly one element in the sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Single``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the only element of a sequence that satisfies a \r\n            specified condition, and throws an exception if more than one \r\n            such element exists.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the only element of a sequence, or a default value if \r\n            the sequence is empty; this method throws an exception if there \r\n            is more than one element in the sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SingleOrDefault``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns the only element of a sequence that satisfies a \r\n            specified condition or a default value if no such element \r\n            exists; this method throws an exception if more than one element \r\n            satisfies the condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAt``1(System.Collections.Generic.IEnumerable{``0},System.Int32)\">\r\n            <summary>\r\n            Returns the element at a specified index in a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ElementAtOrDefault``1(System.Collections.Generic.IEnumerable{``0},System.Int32)\">\r\n            <summary>\r\n            Returns the element at a specified index in a sequence or a \r\n            default value if the index is out of range.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Reverse``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Inverts the order of the elements in a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Take``1(System.Collections.Generic.IEnumerable{``0},System.Int32)\">\r\n            <summary>\r\n            Returns a specified number of contiguous elements from the start \r\n            of a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Skip``1(System.Collections.Generic.IEnumerable{``0},System.Int32)\">\r\n            <summary>\r\n            Bypasses a specified number of elements in a sequence and then \r\n            returns the remaining elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Bypasses elements in a sequence as long as a specified condition \r\n            is true and then returns the remaining elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SkipWhile``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32,System.Boolean})\">\r\n            <summary>\r\n            Bypasses elements in a sequence as long as a specified condition \r\n            is true and then returns the remaining elements. The element's \r\n            index is used in the logic of the predicate function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the number of elements in a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Count``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns a number that represents how many elements in the \r\n            specified sequence satisfy a condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns an <see cref=\"T:System.Int64\"/> that represents the total number \r\n            of elements in a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.LongCount``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Returns an <see cref=\"T:System.Int64\"/> that represents how many elements \r\n            in a sequence satisfy a condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Concat``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Concatenates two sequences.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToList``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:System.Collections.Generic.List`1\"/> from an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToArray``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Creates an array from an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns distinct elements from a sequence by using the default \r\n            equality comparer to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Distinct``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns distinct elements from a sequence by using a specified \r\n            <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/> to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function and a key comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to specified key \r\n            and element selector functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToLookup``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function, a comparer and an element selector function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and compares the keys by using a specified \r\n            comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and projects the elements for each group by \r\n            using a specified function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and creates a result value from each group and \r\n            its key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a key selector \r\n            function. The keys are compared by using a comparer and each \r\n            group's elements are projected by using a specified function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``0},``2},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and creates a result value from each group and \r\n            its key. The elements of each group are projected by using a \r\n            specified function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and creates a result value from each group and \r\n            its key. The keys are compared by using a specified comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupBy``4(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,System.Collections.Generic.IEnumerable{``2},``3},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Groups the elements of a sequence according to a specified key \r\n            selector function and creates a result value from each group and \r\n            its key. Key values are compared by using a specified comparer, \r\n            and the elements of each group are projected by using a \r\n            specified function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,``0})\">\r\n            <summary>\r\n            Applies an accumulator function over a sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``2(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1})\">\r\n            <summary>\r\n            Applies an accumulator function over a sequence. The specified \r\n            seed value is used as the initial accumulator value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Aggregate``3(System.Collections.Generic.IEnumerable{``0},``1,Newtonsoft.Json.Serialization.Func{``1,``0,``1},Newtonsoft.Json.Serialization.Func{``1,``2})\">\r\n            <summary>\r\n            Applies an accumulator function over a sequence. The specified \r\n            seed value is used as the initial accumulator value, and the \r\n            specified function is used to select the result value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Produces the set union of two sequences by using the default \r\n            equality comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Union``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Produces the set union of two sequences by using a specified \r\n            <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the elements of the specified sequence or the type \r\n            parameter's default value in a singleton collection if the \r\n            sequence is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.DefaultIfEmpty``1(System.Collections.Generic.IEnumerable{``0},``0)\">\r\n            <summary>\r\n            Returns the elements of the specified sequence or the specified \r\n            value in a singleton collection if the sequence is empty.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.All``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Determines whether all elements of a sequence satisfy a condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Determines whether a sequence contains any elements.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Any``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Boolean})\">\r\n            <summary>\r\n            Determines whether any element of a sequence satisfies a \r\n            condition.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0)\">\r\n            <summary>\r\n            Determines whether a sequence contains a specified element by \r\n            using the default equality comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Contains``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Determines whether a sequence contains a specified element by \r\n            using a specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Determines whether two sequences are equal by comparing the \r\n            elements by using the default equality comparer for their type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.SequenceEqual``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Determines whether two sequences are equal by comparing their \r\n            elements by using a specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``0,System.Boolean})\">\r\n            <summary>\r\n            Base implementation for Min/Max operator.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.MinMaxImpl``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}},System.Nullable{``0},Newtonsoft.Json.Serialization.Func{System.Nullable{``0},System.Nullable{``0},System.Boolean})\">\r\n            <summary>\r\n            Base implementation for Min/Max operator for nullable types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the minimum value in a generic sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a generic \r\n            sequence and returns the minimum resulting value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the maximum value in a generic sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a generic \r\n            sequence and returns the maximum resulting value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Renumerable``1(System.Collections.Generic.IEnumerator{``0})\">\r\n            <summary>\r\n            Makes an enumerator seen as enumerable once more.\r\n            </summary>\r\n            <remarks>\r\n            The supplied enumerator must have been started. The first element\r\n            returned is the element the enumerator was on when passed in.\r\n            DO NOT use this method if the caller must be a generator. It is\r\n            mostly safe among aggregate operations.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Sorts the elements of a sequence in ascending order according to a key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderBy``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})\">\r\n            <summary>\r\n            Sorts the elements of a sequence in ascending order by using a \r\n            specified comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Sorts the elements of a sequence in descending order according to a key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.OrderByDescending``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})\">\r\n            <summary>\r\n             Sorts the elements of a sequence in descending order by using a \r\n            specified comparer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Performs a subsequent ordering of the elements in a sequence in \r\n            ascending order according to a key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenBy``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})\">\r\n            <summary>\r\n            Performs a subsequent ordering of the elements in a sequence in \r\n            ascending order by using a specified comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Performs a subsequent ordering of the elements in a sequence in \r\n            descending order, according to a key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ThenByDescending``2(Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IComparer{``1})\">\r\n            <summary>\r\n            Performs a subsequent ordering of the elements in a sequence in \r\n            descending order by using a specified comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.IntersectExceptImpl``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0},System.Boolean)\">\r\n            <summary>\r\n            Base implementation for Intersect and Except operators.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Produces the set intersection of two sequences by using the \r\n            default equality comparer to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Intersect``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Produces the set intersection of two sequences by using the \r\n            specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/> to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Produces the set difference of two sequences by using the \r\n            default equality comparer to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Except``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Produces the set difference of two sequences by using the \r\n            specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/> to compare values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:System.Collections.Generic.Dictionary`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``2(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:System.Collections.Generic.Dictionary`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function and key comparer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:System.Collections.Generic.Dictionary`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to specified key \r\n            selector and element selector functions.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.ToDictionary``3(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,``1},Newtonsoft.Json.Serialization.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})\">\r\n            <summary>\r\n            Creates a <see cref=\"T:System.Collections.Generic.Dictionary`2\"/> from an \r\n            <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> according to a specified key \r\n            selector function, a comparer, and an element selector function.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3})\">\r\n            <summary>\r\n            Correlates the elements of two sequences based on matching keys. \r\n            The default equality comparer is used to compare keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Join``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,``1,``3},System.Collections.Generic.IEqualityComparer{``2})\">\r\n            <summary>\r\n            Correlates the elements of two sequences based on matching keys. \r\n            The default equality comparer is used to compare keys. A \r\n            specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/> is used to compare keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3})\">\r\n            <summary>\r\n            Correlates the elements of two sequences based on equality of \r\n            keys and groups the results. The default equality comparer is \r\n            used to compare keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.GroupJoin``4(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},Newtonsoft.Json.Serialization.Func{``0,``2},Newtonsoft.Json.Serialization.Func{``1,``2},Newtonsoft.Json.Serialization.Func{``0,System.Collections.Generic.IEnumerable{``1},``3},System.Collections.Generic.IEqualityComparer{``2})\">\r\n            <summary>\r\n            Correlates the elements of two sequences based on equality of \r\n            keys and groups the results. The default equality comparer is \r\n            used to compare keys. A specified <see cref=\"T:System.Collections.Generic.IEqualityComparer`1\"/> \r\n            is used to compare keys.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int32})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Int32\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int32})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int32})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Int32\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Int32\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Int32\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Returns the minimum value in a sequence of nullable \r\n            <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the minimum nullable <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Returns the maximum value in a sequence of nullable \r\n            <see cref=\"T:System.Int32\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int32}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the maximum nullable <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Int64})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Int64\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Int64})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Int64})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Int64\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Int64\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Int64\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Returns the minimum value in a sequence of nullable \r\n            <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the minimum nullable <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Returns the maximum value in a sequence of nullable \r\n            <see cref=\"T:System.Int64\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Int64}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the maximum nullable <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Single})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Single\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Single})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Single})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Single\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Single\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Single\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Returns the minimum value in a sequence of nullable \r\n            <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the minimum nullable <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Returns the maximum value in a sequence of nullable \r\n            <see cref=\"T:System.Single\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Single}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the maximum nullable <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Double})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Double\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Double})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Double})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Double\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Double\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Double\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Returns the minimum value in a sequence of nullable \r\n            <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the minimum nullable <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Returns the maximum value in a sequence of nullable \r\n            <see cref=\"T:System.Double\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Double}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the maximum nullable <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Decimal})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})\">\r\n            <summary>\r\n            Computes the sum of a sequence of nullable <see cref=\"T:System.Decimal\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Decimal})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Decimal})\">\r\n            <summary>\r\n            Computes the average of a sequence of nullable <see cref=\"T:System.Decimal\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Sum``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Computes the sum of a sequence of <see cref=\"T:System.Decimal\"/> \r\n            values that are obtained by invoking a transform function on \r\n            each element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Average``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Computes the average of a sequence of <see cref=\"T:System.Decimal\"/> values \r\n            that are obtained by invoking a transform function on each \r\n            element of the input sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Returns the minimum value in a sequence of nullable \r\n            <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Min``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the minimum nullable <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max(System.Collections.Generic.IEnumerable{System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Returns the maximum value in a sequence of nullable \r\n            <see cref=\"T:System.Decimal\"/> values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Enumerable.Max``1(System.Collections.Generic.IEnumerable{``0},Newtonsoft.Json.Serialization.Func{``0,System.Nullable{System.Decimal}})\">\r\n            <summary>\r\n            Invokes a transform function on each element of a sequence and \r\n            returns the maximum nullable <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2\">\r\n            <summary>\r\n            Represents a collection of objects that have a common key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2.Key\">\r\n            <summary>\r\n            Gets the key of the <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.IGrouping`2\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.LinqBridge.ILookup`2\">\r\n            <summary>\r\n            Defines an indexer, size property, and Boolean search method for \r\n            data structures that map keys to <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> \r\n            sequences of values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1\">\r\n            <summary>\r\n            Represents a sorted sequence.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1.CreateOrderedEnumerable``1(Newtonsoft.Json.Serialization.Func{`0,``0},System.Collections.Generic.IComparer{``0},System.Boolean)\">\r\n            <summary>\r\n            Performs a subsequent ordering on the elements of an \r\n            <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.IOrderedEnumerable`1\"/> according to a key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\">\r\n            <summary>\r\n            Represents a collection of keys each mapped to one or more values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Contains(`0)\">\r\n            <summary>\r\n            Determines whether a specified key is in the <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.ApplyResultSelector``1(Newtonsoft.Json.Serialization.Func{`0,System.Collections.Generic.IEnumerable{`1},``0})\">\r\n            <summary>\r\n            Applies a transform function to each key and its associated \r\n            values and returns the results.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.GetEnumerator\">\r\n            <summary>\r\n            Returns a generic enumerator that iterates through the <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Count\">\r\n            <summary>\r\n            Gets the number of key/value collection pairs in the <see cref=\"T:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Utilities.LinqBridge.Lookup`2.Item(`0)\">\r\n            <summary>\r\n            Gets the collection of values indexed by the specified key.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.TagPosition(`0,System.Int32)\">\r\n            <remarks>\r\n            See <a href=\"http://code.google.com/p/linqbridge/issues/detail?id=11\">issue #11</a>\r\n            for why this method is needed and cannot be expressed as a \r\n            lambda at the call site.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.LinqBridge.OrderedEnumerable`2.GetFirst(Newtonsoft.Json.Utilities.LinqBridge.Tuple{`0,System.Int32})\">\r\n            <remarks>\r\n            See <a href=\"http://code.google.com/p/linqbridge/issues/detail?id=11\">issue #11</a>\r\n            for why this method is needed and cannot be expressed as a \r\n            lambda at the call site.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.CompilerServices.ExtensionAttribute\">\r\n            <remarks>\r\n            This attribute allows us to define extension methods without \r\n            requiring .NET Framework 3.5. For more information, see the section,\r\n            <a href=\"http://msdn.microsoft.com/en-us/magazine/cc163317.aspx#S7\">Extension Methods in .NET Framework 2.0 Apps</a>,\r\n            of <a href=\"http://msdn.microsoft.com/en-us/magazine/cc163317.aspx\">Basic Instincts: Extension Methods</a>\r\n            column in <a href=\"http://msdn.microsoft.com/msdnmag/\">MSDN Magazine</a>, \r\n            issue <a href=\"http://msdn.microsoft.com/en-us/magazine/cc135410.aspx\">Nov 2007</a>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\">\r\n            <summary>\r\n            Represents a view of a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"propertyType\">Type of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, returns whether resetting an object changes its value.\r\n            </summary>\r\n            <returns>\r\n            true if resetting the component changes its value; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component to test for reset capability. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, gets the current value of the property on a component.\r\n            </summary>\r\n            <returns>\r\n            The value of a property for a given component.\r\n            </returns>\r\n            <param name=\"component\">The component with the property for which to retrieve the value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, resets the value for this property of the component to the default value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be reset to the default value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, sets the value of the component to a different value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be set. \r\n                            </param><param name=\"value\">The new value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.\r\n            </summary>\r\n            <returns>\r\n            true if the property should be persisted; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component with the property to be examined for persistence. \r\n                            </param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the component this property is bound to.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of component this property is bound to. When the <see cref=\"M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)\"/> or <see cref=\"M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)\"/> methods are invoked, the object specified might be an instance of this type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly\">\r\n            <summary>\r\n            When overridden in a derived class, gets a value indicating whether this property is read-only.\r\n            </summary>\r\n            <returns>\r\n            true if the property is read-only; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the property.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of the property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode\">\r\n            <summary>\r\n            Gets the hash code for the name of the member.\r\n            </summary>\r\n            <value></value>\r\n            <returns>\r\n            The hash code for the name of the member.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"!:DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.AddingNewEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.ListChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\">\r\n            <summary>\r\n            Occurs when the list changes or an item in the list changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\">\r\n            <summary>\r\n            Occurs before an item is added to the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties\">\r\n            <summary>\r\n            Returns the properties for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])\">\r\n            <summary>\r\n            Returns the properties for this instance of a component using the attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the filtered properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes\">\r\n            <summary>\r\n            Returns a collection of custom attributes for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.AttributeCollection\"/> containing the attributes for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName\">\r\n            <summary>\r\n            Returns the class name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The class name of the object, or null if the class does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName\">\r\n            <summary>\r\n            Returns the name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The name of the object, or null if the object does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter\">\r\n            <summary>\r\n            Returns a type converter for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.TypeConverter\"/> that is the converter for this object, or null if there is no <see cref=\"T:System.ComponentModel.TypeConverter\"/> for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent\">\r\n            <summary>\r\n            Returns the default event for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptor\"/> that represents the default event for this object, or null if this object does not have events.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty\">\r\n            <summary>\r\n            Returns the default property for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the default property for this object, or null if this object does not have properties.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)\">\r\n            <summary>\r\n            Returns an editor of the specified type for this instance of a component.\r\n            </summary>\r\n            <param name=\"editorBaseType\">A <see cref=\"T:System.Type\"/> that represents the editor for this object.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> of the specified type that is the editor for this object, or null if the editor cannot be found.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])\">\r\n            <summary>\r\n            Returns the events for this instance of a component using the specified attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the filtered events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents\">\r\n            <summary>\r\n            Returns the events for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)\">\r\n            <summary>\r\n            Returns an object that contains the property described by the specified property descriptor.\r\n            </summary>\r\n            <param name=\"pd\">A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the property whose owner is to be found.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> that represents the owner of the specified property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.SerializableAttribute\"/> attribute when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.SerializableAttribute\"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using dynamic methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator\">\r\n            <summary>\r\n            Gets or sets the ISerializable object constructor.\r\n            </summary>\r\n            <value>The ISerializable object constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BinaryConverter\">\r\n            <summary>\r\n            Converts a binary value to and from a base 64 string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataSetConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataSet\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataTableConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataTable\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.EntityKeyMemberConverter\">\r\n            <summary>\r\n            Converts an Entity Framework EntityKey to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\">\r\n            <summary>\r\n            Represents a view of a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"propertyType\">Type of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, returns whether resetting an object changes its value.\r\n            </summary>\r\n            <returns>\r\n            true if resetting the component changes its value; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component to test for reset capability. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, gets the current value of the property on a component.\r\n            </summary>\r\n            <returns>\r\n            The value of a property for a given component.\r\n            </returns>\r\n            <param name=\"component\">The component with the property for which to retrieve the value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, resets the value for this property of the component to the default value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be reset to the default value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, sets the value of the component to a different value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be set. \r\n                            </param><param name=\"value\">The new value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.\r\n            </summary>\r\n            <returns>\r\n            true if the property should be persisted; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component with the property to be examined for persistence. \r\n                            </param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the component this property is bound to.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of component this property is bound to. When the <see cref=\"M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)\"/> or <see cref=\"M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)\"/> methods are invoked, the object specified might be an instance of this type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly\">\r\n            <summary>\r\n            When overridden in a derived class, gets a value indicating whether this property is read-only.\r\n            </summary>\r\n            <returns>\r\n            true if the property is read-only; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the property.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of the property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode\">\r\n            <summary>\r\n            Gets the hash code for the name of the member.\r\n            </summary>\r\n            <value></value>\r\n            <returns>\r\n            The hash code for the name of the member.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to the application's <see cref=\"T:System.Diagnostics.TraceListener\"/> instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator\">\r\n            <summary>\r\n            Gets or sets the ISerializable object constructor.\r\n            </summary>\r\n            <value>The ISerializable object constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using dynamic methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.AddingNewEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.ListChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\">\r\n            <summary>\r\n            Occurs when the list changes or an item in the list changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\">\r\n            <summary>\r\n            Occurs before an item is added to the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanging\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties\">\r\n            <summary>\r\n            Returns the properties for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])\">\r\n            <summary>\r\n            Returns the properties for this instance of a component using the attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the filtered properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes\">\r\n            <summary>\r\n            Returns a collection of custom attributes for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.AttributeCollection\"/> containing the attributes for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName\">\r\n            <summary>\r\n            Returns the class name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The class name of the object, or null if the class does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName\">\r\n            <summary>\r\n            Returns the name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The name of the object, or null if the object does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter\">\r\n            <summary>\r\n            Returns a type converter for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.TypeConverter\"/> that is the converter for this object, or null if there is no <see cref=\"T:System.ComponentModel.TypeConverter\"/> for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent\">\r\n            <summary>\r\n            Returns the default event for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptor\"/> that represents the default event for this object, or null if this object does not have events.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty\">\r\n            <summary>\r\n            Returns the default property for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the default property for this object, or null if this object does not have properties.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)\">\r\n            <summary>\r\n            Returns an editor of the specified type for this instance of a component.\r\n            </summary>\r\n            <param name=\"editorBaseType\">A <see cref=\"T:System.Type\"/> that represents the editor for this object.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> of the specified type that is the editor for this object, or null if the editor cannot be found.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])\">\r\n            <summary>\r\n            Returns the events for this instance of a component using the specified attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the filtered events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents\">\r\n            <summary>\r\n            Returns the events for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)\">\r\n            <summary>\r\n            Returns an object that contains the property described by the specified property descriptor.\r\n            </summary>\r\n            <param name=\"pd\">A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the property whose owner is to be found.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> that represents the owner of the specified property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanging\">\r\n            <summary>\r\n            Occurs when a property value is changing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.SerializableAttribute\"/> attribute when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.SerializableAttribute\"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BinaryConverter\">\r\n            <summary>\r\n            Converts a binary value to and from a base 64 string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BinaryConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataSetConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataSet\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataSetConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DataTableConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Data.DataTable\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DataTableConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.EntityKeyMemberConverter\">\r\n            <summary>\r\n            Converts an Entity Framework EntityKey to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.EntityKeyMemberConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.ExpandoObjectConverter\">\r\n            <summary>\r\n            Converts an ExpandoObject to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to the application's <see cref=\"T:System.Diagnostics.TraceListener\"/> instances.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DiagnosticsTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:System.Diagnostics.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:System.Diagnostics.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonISerializableContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonISerializableContract.ISerializableCreator\">\r\n            <summary>\r\n            Gets or sets the ISerializable object constructor.\r\n            </summary>\r\n            <value>The ISerializable object constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using dynamic methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DynamicValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DynamicValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\">\r\n            <summary>\r\n            Represents a view of a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.#ctor(System.String,System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JPropertyDescriptor\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The name.</param>\r\n            <param name=\"propertyType\">Type of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.CanResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, returns whether resetting an object changes its value.\r\n            </summary>\r\n            <returns>\r\n            true if resetting the component changes its value; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component to test for reset capability. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.GetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, gets the current value of the property on a component.\r\n            </summary>\r\n            <returns>\r\n            The value of a property for a given component.\r\n            </returns>\r\n            <param name=\"component\">The component with the property for which to retrieve the value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ResetValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, resets the value for this property of the component to the default value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be reset to the default value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, sets the value of the component to a different value.\r\n            </summary>\r\n            <param name=\"component\">The component with the property value that is to be set. \r\n                            </param><param name=\"value\">The new value. \r\n                            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JPropertyDescriptor.ShouldSerializeValue(System.Object)\">\r\n            <summary>\r\n            When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.\r\n            </summary>\r\n            <returns>\r\n            true if the property should be persisted; otherwise, false.\r\n            </returns>\r\n            <param name=\"component\">The component with the property to be examined for persistence. \r\n                            </param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.ComponentType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the component this property is bound to.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of component this property is bound to. When the <see cref=\"M:System.ComponentModel.PropertyDescriptor.GetValue(System.Object)\"/> or <see cref=\"M:System.ComponentModel.PropertyDescriptor.SetValue(System.Object,System.Object)\"/> methods are invoked, the object specified might be an instance of this type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.IsReadOnly\">\r\n            <summary>\r\n            When overridden in a derived class, gets a value indicating whether this property is read-only.\r\n            </summary>\r\n            <returns>\r\n            true if the property is read-only; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.PropertyType\">\r\n            <summary>\r\n            When overridden in a derived class, gets the type of the property.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Type\"/> that represents the type of the property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JPropertyDescriptor.NameHashCode\">\r\n            <summary>\r\n            Gets the hash code for the name of the member.\r\n            </summary>\r\n            <value></value>\r\n            <returns>\r\n            The hash code for the name of the member.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"T:System.NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous populate operation.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXmlNode(System.Xml.XmlNode,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the XML node to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XmlNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXmlNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the XmlNode from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XmlNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnAddingNew(System.ComponentModel.AddingNewEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.AddingNewEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnListChanged(System.ComponentModel.ListChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.ComponentModel.ListChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.Collections.Specialized.NotifyCollectionChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.ListChanged\">\r\n            <summary>\r\n            Occurs when the list changes or an item in the list changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.AddingNew\">\r\n            <summary>\r\n            Occurs before an item is added to the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\">\r\n            <summary>\r\n            Occurs when the items list of the collection has changed, or the collection is reset.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanging(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanging\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties\">\r\n            <summary>\r\n            Returns the properties for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])\">\r\n            <summary>\r\n            Returns the properties for this instance of a component using the attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptorCollection\"/> that represents the filtered properties for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetAttributes\">\r\n            <summary>\r\n            Returns a collection of custom attributes for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.AttributeCollection\"/> containing the attributes for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetClassName\">\r\n            <summary>\r\n            Returns the class name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The class name of the object, or null if the class does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetComponentName\">\r\n            <summary>\r\n            Returns the name of this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            The name of the object, or null if the object does not have a name.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetConverter\">\r\n            <summary>\r\n            Returns a type converter for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.TypeConverter\"/> that is the converter for this object, or null if there is no <see cref=\"T:System.ComponentModel.TypeConverter\"/> for this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent\">\r\n            <summary>\r\n            Returns the default event for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptor\"/> that represents the default event for this object, or null if this object does not have events.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty\">\r\n            <summary>\r\n            Returns the default property for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the default property for this object, or null if this object does not have properties.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)\">\r\n            <summary>\r\n            Returns an editor of the specified type for this instance of a component.\r\n            </summary>\r\n            <param name=\"editorBaseType\">A <see cref=\"T:System.Type\"/> that represents the editor for this object.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> of the specified type that is the editor for this object, or null if the editor cannot be found.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])\">\r\n            <summary>\r\n            Returns the events for this instance of a component using the specified attribute array as a filter.\r\n            </summary>\r\n            <param name=\"attributes\">An array of type <see cref=\"T:System.Attribute\"/> that is used as a filter.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the filtered events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetEvents\">\r\n            <summary>\r\n            Returns the events for this instance of a component.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.ComponentModel.EventDescriptorCollection\"/> that represents the events for this component instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)\">\r\n            <summary>\r\n            Returns an object that contains the property described by the specified property descriptor.\r\n            </summary>\r\n            <param name=\"pd\">A <see cref=\"T:System.ComponentModel.PropertyDescriptor\"/> that represents the property whose owner is to be found.</param>\r\n            <returns>\r\n            An <see cref=\"T:System.Object\"/> that represents the owner of the specified property.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanging\">\r\n            <summary>\r\n            Occurs when a property value is changing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n            <param name=\"info\">The <see cref=\"T:System.Runtime.Serialization.SerializationInfo\"/> that holds the serialized object data about the exception being thrown.</param>\r\n            <param name=\"context\">The <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> that contains contextual information about the source or destination.</param>\r\n            <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"info\"/> parameter is null. </exception>\r\n            <exception cref=\"T:System.Runtime.Serialization.SerializationException\">The class name is null or <see cref=\"P:System.Exception.HResult\"/> is zero (0). </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateISerializableContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonISerializableContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableInterface\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.Runtime.Serialization.ISerializable\"/> interface will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.IgnoreSerializableAttribute\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to ignore the <see cref=\"T:System.SerializableAttribute\"/> attribute when serializing and deserializing types.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the <see cref=\"T:System.SerializableAttribute\"/> attribute will be ignored when serializing and deserializing types; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic that returns a result\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions\">\r\n            <summary>\r\n            Returns a Restrictions object which includes our current restrictions merged\r\n            with a restriction limiting our type\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle\">\r\n            <summary>\r\n            Indicates the method that will be used during deserialization for locating and loading assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple\">\r\n            <summary>\r\n            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full\">\r\n            <summary>\r\n            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.SerializationBinder\">\r\n            <summary>\r\n            Allows users to control class loading and mandate what class to load.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object</param>\r\n            <returns>The type of the object the formatter creates a new instance of.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TraceLevel\">\r\n            <summary>\r\n            Specifies what messages to output for the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Off\">\r\n            <summary>\r\n            Output no tracing and debugging messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Error\">\r\n            <summary>\r\n            Output error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Warning\">\r\n            <summary>\r\n            Output warnings and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Info\">\r\n            <summary>\r\n            Output informational messages, warnings, and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Verbose\">\r\n            <summary>\r\n            Output all debugging and tracing messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle\">\r\n            <summary>\r\n            Indicates the method that will be used during deserialization for locating and loading assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple\">\r\n            <summary>\r\n            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full\">\r\n            <summary>\r\n            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.Collections.Specialized.NotifyCollectionChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\">\r\n            <summary>\r\n            Occurs when the items list of the collection has changed, or the collection is reset.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.SerializationBinder\">\r\n            <summary>\r\n            Allows users to control class loading and mandate what class to load.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object</param>\r\n            <returns>The type of the object the formatter creates a new instance of.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TraceLevel\">\r\n            <summary>\r\n            Specifies what messages to output for the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Off\">\r\n            <summary>\r\n            Output no tracing and debugging messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Error\">\r\n            <summary>\r\n            Output error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Warning\">\r\n            <summary>\r\n            Output warnings and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Info\">\r\n            <summary>\r\n            Output informational messages, warnings, and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Verbose\">\r\n            <summary>\r\n            Output all debugging and tracing messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.ExpandoObjectConverter\">\r\n            <summary>\r\n            Converts an ExpandoObject to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle\">\r\n            <summary>\r\n            Indicates the method that will be used during deserialization for locating and loading assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple\">\r\n            <summary>\r\n            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full\">\r\n            <summary>\r\n            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.Collections.Specialized.NotifyCollectionChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\">\r\n            <summary>\r\n            Occurs when the items list of the collection has changed, or the collection is reset.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.SerializationBinder\">\r\n            <summary>\r\n            Allows users to control class loading and mandate what class to load.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object</param>\r\n            <returns>The type of the object the formatter creates a new instance of.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TraceLevel\">\r\n            <summary>\r\n            Specifies what messages to output for the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Off\">\r\n            <summary>\r\n            Output no tracing and debugging messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Error\">\r\n            <summary>\r\n            Output error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Warning\">\r\n            <summary>\r\n            Output warnings and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Info\">\r\n            <summary>\r\n            Output informational messages, warnings, and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Verbose\">\r\n            <summary>\r\n            Output all debugging and tracing messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic that returns a result\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions\">\r\n            <summary>\r\n            Returns a Restrictions object which includes our current restrictions merged\r\n            with a restriction limiting our type\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle\">\r\n            <summary>\r\n            Indicates the method that will be used during deserialization for locating and loading assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple\">\r\n            <summary>\r\n            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full\">\r\n            <summary>\r\n            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.Collections.Specialized.NotifyCollectionChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\">\r\n            <summary>\r\n            Occurs when the items list of the collection has changed, or the collection is reset.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.SerializationBinder\">\r\n            <summary>\r\n            Allows users to control class loading and mandate what class to load.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object</param>\r\n            <returns>The type of the object the formatter creates a new instance of.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DefaultMembersSearchFlags\">\r\n            <summary>\r\n            Gets or sets the default members search flags.\r\n            </summary>\r\n            <value>The default members search flags.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TraceLevel\">\r\n            <summary>\r\n            Specifies what messages to output for the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Off\">\r\n            <summary>\r\n            Output no tracing and debugging messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Error\">\r\n            <summary>\r\n            Output error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Warning\">\r\n            <summary>\r\n            Output warnings and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Info\">\r\n            <summary>\r\n            Output informational messages, warnings, and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Verbose\">\r\n            <summary>\r\n            Output all debugging and tracing messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>Newtonsoft.Json</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonObjectId\">\r\n            <summary>\r\n            Represents a BSON Oid (object id).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonObjectId.#ctor(System.Byte[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> class.\r\n            </summary>\r\n            <param name=\"value\">The Oid value.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonObjectId.Value\">\r\n            <summary>\r\n            Gets or sets the value of the Oid.\r\n            </summary>\r\n            <value>The value of the Oid.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>true if the next token was read successfully; false if there are no more tokens to read.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Skip\">\r\n            <summary>\r\n            Skips the children of the current token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Sets the current token.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetToken(Newtonsoft.Json.JsonToken,System.Object)\">\r\n            <summary>\r\n            Sets the current token and value.\r\n            </summary>\r\n            <param name=\"newToken\">The new token.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.SetStateBasedOnCurrent\">\r\n            <summary>\r\n            Sets the state based on current token type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.System#IDisposable#Dispose\">\r\n            <summary>\r\n            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Dispose(System.Boolean)\">\r\n            <summary>\r\n            Releases unmanaged and - optionally - managed resources\r\n            </summary>\r\n            <param name=\"disposing\"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CurrentState\">\r\n            <summary>\r\n            Gets the current reader state.\r\n            </summary>\r\n            <value>The current reader state.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.CloseInput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the reader is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the reader is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.ValueType\">\r\n            <summary>\r\n            Gets The Common Language Runtime (CLR) type for the current JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReader.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReader.State\">\r\n            <summary>\r\n            Specifies the state of the reader.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Start\">\r\n            <summary>\r\n            The Read method has not been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Complete\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Property\">\r\n            <summary>\r\n            Reader is at a property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ObjectStart\">\r\n            <summary>\r\n            Reader is at the start of an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Object\">\r\n            <summary>\r\n            Reader is in an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ArrayStart\">\r\n            <summary>\r\n            Reader is at the start of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Array\">\r\n            <summary>\r\n            Reader is in an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Closed\">\r\n            <summary>\r\n            The Close method has been called.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.PostValue\">\r\n            <summary>\r\n            Reader has just read a value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.ConstructorStart\">\r\n            <summary>\r\n            Reader is at the start of a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Constructor\">\r\n            <summary>\r\n            Reader in a constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Error\">\r\n            <summary>\r\n            An error occurred that prevents the read operation from continuing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonReader.State.Finished\">\r\n            <summary>\r\n            The end of the file has been reached successfully.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonReader\"/> class.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <param name=\"readRootValueAsArray\">if set to <c>true</c> the root object will be read as a JSON array.</param>\r\n            <param name=\"dateTimeKindHandling\">The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonReader.Close\">\r\n            <summary>\r\n            Changes the <see cref=\"T:Newtonsoft.Json.JsonReader.State\"/> to Closed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.JsonNet35BinaryCompatibility\">\r\n            <summary>\r\n            Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.ReadRootValueAsArray\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the root object will be read as a JSON array.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonReader.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when reading <see cref=\"T:System.DateTime\"/> values from BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Bson.BsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.#ctor\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndObject\">\r\n            <summary>\r\n            Writes the end of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndArray\">\r\n            <summary>\r\n            Writes the end of an array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEndConstructor\">\r\n            <summary>\r\n            Writes the end constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd\">\r\n            <summary>\r\n            Writes the end of the current Json object or array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteToken(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Writes the current <see cref=\"T:Newtonsoft.Json.JsonReader\"/> token.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read the token from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON without changing the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt32})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt64})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Single})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Double})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Boolean})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Int16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.UInt16})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Char})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Byte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.SByte})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Decimal})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTime})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.DateTimeOffset})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.Guid})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Nullable{System.TimeSpan})\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Nullable`1\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Nullable`1\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteValue(System.Object)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Object\"/> value.\r\n            An error will raised if the value cannot be written as a single JSON token.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.CloseOutput\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the underlying stream or\r\n            <see cref=\"T:System.IO.TextReader\"/> should be closed when the writer is closed.\r\n            </summary>\r\n            <value>\r\n            true to close the underlying stream or <see cref=\"T:System.IO.TextReader\"/> when\r\n            the writer is closed; otherwise false. The default is true.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Top\">\r\n            <summary>\r\n            Gets the top.\r\n            </summary>\r\n            <value>The top.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.WriteState\">\r\n            <summary>\r\n            Gets the state of the writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Path\">\r\n            <summary>\r\n            Gets the path of the writer. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriter.StringEscapeHandling\">\r\n            <summary>\r\n            Get or set how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.Stream)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"stream\">The stream.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.#ctor(System.IO.BinaryWriter)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Bson.BsonWriter\"/> class.\r\n            </summary>\r\n            <param name=\"writer\">The writer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRawValue(System.String)\">\r\n            <summary>\r\n            Writes raw JSON where a value is expected and updates the writer's state.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteObjectId(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value that represents a BSON object id.\r\n            </summary>\r\n            <param name=\"value\">The Object ID value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Bson.BsonWriter.WriteRegex(System.String,System.String)\">\r\n            <summary>\r\n            Writes a BSON regex.\r\n            </summary>\r\n            <param name=\"pattern\">The regex pattern.</param>\r\n            <param name=\"options\">The regex options.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Bson.BsonWriter.DateTimeKindHandling\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.\r\n            When set to <see cref=\"F:System.DateTimeKind.Unspecified\"/> no conversion will occur.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.DateTimeKind\"/> used when writing <see cref=\"T:System.DateTime\"/> values to BSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ConstructorHandling\">\r\n            <summary>\r\n            Specifies how constructors are used when initializing objects during deserialization by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.Default\">\r\n            <summary>\r\n            First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ConstructorHandling.AllowNonPublicDefaultConstructor\">\r\n            <summary>\r\n            Json.NET will use a non-public default constructor before falling back to a paramatized constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.BsonObjectIdConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:Newtonsoft.Json.Bson.BsonObjectId\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverter\">\r\n            <summary>\r\n            Converts an object to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverter.GetSchema\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.\r\n            </summary>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of the JSON produced by the JsonConverter.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanRead\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can read JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value><c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.BsonObjectIdConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.CustomCreationConverter`1\">\r\n            <summary>\r\n            Create a custom object\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to convert.</typeparam>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.Create(System.Type)\">\r\n            <summary>\r\n            Creates an object which will then be populated by the serializer.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The created object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.CustomCreationConverter`1.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.DateTimeConverterBase\">\r\n            <summary>\r\n            Provides a base class for converting a <see cref=\"T:System.DateTime\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.DateTimeConverterBase.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.ExpandoObjectConverter\">\r\n            <summary>\r\n            Converts an ExpandoObject to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.ExpandoObjectConverter.CanWrite\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> can write JSON; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.IsoDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.IsoDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeStyles\">\r\n            <summary>\r\n            Gets or sets the date time styles used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time styles used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.DateTimeFormat\">\r\n            <summary>\r\n            Gets or sets the date time format used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The date time format used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.IsoDateTimeConverter.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when converting a date to and from JSON.\r\n            </summary>\r\n            <value>The culture used when converting a date to and from JSON.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.DateTime\"/> to and from a JavaScript date constructor (e.g. new Date(52231943)).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.JavaScriptDateTimeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.KeyValuePairConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Collections.Generic.KeyValuePair`2\"/> to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.KeyValuePairConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.RegexConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Text.RegularExpressions.Regex\"/> to and from JSON and BSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.RegexConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.StringEnumConverter\">\r\n            <summary>\r\n            Converts an <see cref=\"T:System.Enum\"/> to and from its name string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.GetEnumNameMap(System.Type)\">\r\n            <summary>\r\n            A cached representation of the Enum string representation to respect per Enum field name.\r\n            </summary>\r\n            <param name=\"t\">The type of the Enum.</param>\r\n            <returns>A map of enum field name to either the field name, or the configured enum member name (<see cref=\"T:System.Runtime.Serialization.EnumMemberAttribute\"/>).</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.StringEnumConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.StringEnumConverter.CamelCaseText\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the written enum text should be camel case.\r\n            </summary>\r\n            <value><c>true</c> if the written enum text will be camel case; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.VersionConverter\">\r\n            <summary>\r\n            Converts a <see cref=\"T:System.Version\"/> to and from a string (e.g. \"1.2.3.4\").\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing property value of the JSON that is being converted.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.VersionConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified object type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Converters.XmlNodeConverter\">\r\n            <summary>\r\n            Converts XML to and from JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Writes the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"writer\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> to write to.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Reads the JSON representation of the object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from.</param>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <param name=\"existingValue\">The existing value of object being read.</param>\r\n            <param name=\"serializer\">The calling serializer.</param>\r\n            <returns>The object value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.IsNamespaceAttribute(System.String,System.String@)\">\r\n            <summary>\r\n            Checks if the attributeName is a namespace attribute.\r\n            </summary>\r\n            <param name=\"attributeName\">Attribute name to test.</param>\r\n            <param name=\"prefix\">The attribute name prefix if it has one, otherwise an empty string.</param>\r\n            <returns>True if attribute name is for a namespace attribute, otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Converters.XmlNodeConverter.CanConvert(System.Type)\">\r\n            <summary>\r\n            Determines whether this instance can convert the specified value type.\r\n            </summary>\r\n            <param name=\"valueType\">Type of the value.</param>\r\n            <returns>\r\n            \t<c>true</c> if this instance can convert the specified value type; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.DeserializeRootElementName\">\r\n            <summary>\r\n            Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.\r\n            </summary>\r\n            <value>The name of the deserialize root element.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.WriteArrayAttribute\">\r\n            <summary>\r\n            Gets or sets a flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </summary>\r\n            <value><c>true</c> if the array attibute is written to the XML; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Converters.XmlNodeConverter.OmitRootObject\">\r\n            <summary>\r\n            Gets or sets a value indicating whether to write the root JSON object.\r\n            </summary>\r\n            <value><c>true</c> if the JSON root object is omitted; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateFormatHandling\">\r\n            <summary>\r\n            Specifies how dates are formatted when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.IsoDateFormat\">\r\n            <summary>\r\n            Dates are written in the ISO 8601 format, e.g. \"2012-03-21T05:40Z\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateFormatHandling.MicrosoftDateFormat\">\r\n            <summary>\r\n            Dates are written in the Microsoft JSON format, e.g. \"\\/Date(1198908717056)\\/\".\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateParseHandling\">\r\n            <summary>\r\n            Specifies how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.None\">\r\n            <summary>\r\n            Date formatted strings are not parsed to a date type and are read as strings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTime\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\">\r\n            <summary>\r\n            Date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed to <see cref=\"F:Newtonsoft.Json.DateParseHandling.DateTimeOffset\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DateTimeZoneHandling\">\r\n            <summary>\r\n            Specifies how to treat the time value when converting between string and <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Local\">\r\n            <summary>\r\n            Treat as local time. If the <see cref=\"T:System.DateTime\"/> object represents a Coordinated Universal Time (UTC), it is converted to the local time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Utc\">\r\n            <summary>\r\n            Treat as a UTC. If the <see cref=\"T:System.DateTime\"/> object represents a local time, it is converted to a UTC.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.Unspecified\">\r\n            <summary>\r\n            Treat as a local time if a <see cref=\"T:System.DateTime\"/> is being converted to a string.\r\n            If a string is being converted to <see cref=\"T:System.DateTime\"/>, convert to a local time if a time zone is specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DateTimeZoneHandling.RoundtripKind\">\r\n            <summary>\r\n            Time zone information should be preserved when converting.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.DefaultValueHandling\">\r\n            <summary>\r\n            Specifies default value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingObject\" title=\"DefaultValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeDefaultValueHandlingExample\" title=\"DefaultValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Include\">\r\n            <summary>\r\n            Include members where the member value is the same as the member's default value when serializing objects.\r\n            Included members are written to JSON. Has no effect when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            so that is is not written to JSON.\r\n            This option will ignore all default values (e.g. <c>null</c> for objects and nullable typesl; <c>0</c> for integers,\r\n            decimals and floating point numbers; and <c>false</c> for booleans). The default value ignored can be changed by\r\n            placing the <see cref=\"T:System.ComponentModel.DefaultValueAttribute\"/> on the property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.Populate\">\r\n            <summary>\r\n            Members with a default value but no JSON will be set to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.DefaultValueHandling.IgnoreAndPopulate\">\r\n            <summary>\r\n            Ignore members where the member value is the same as the member's default value when serializing objects\r\n            and sets members to their default value when deserializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle\">\r\n            <summary>\r\n            Indicates the method that will be used during deserialization for locating and loading assemblies.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple\">\r\n            <summary>\r\n            In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Full\">\r\n            <summary>\r\n            In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Formatting\">\r\n            <summary>\r\n            Specifies formatting options for the <see cref=\"T:Newtonsoft.Json.JsonTextWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.None\">\r\n            <summary>\r\n            No special formatting is applied. This is the default.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Formatting.Indented\">\r\n            <summary>\r\n            Causes child objects to be indented according to the <see cref=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\"/> and <see cref=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\"/> settings.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.IJsonLineInfo\">\r\n            <summary>\r\n            Provides an interface to enable a class to return line and position information.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.IJsonLineInfo.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>The current line number or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.IJsonLineInfo.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>The current line position or 0 if no line information is available (for example, HasLineInfo returns false).</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonArrayAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonContainerAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonContainerAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonContainerAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n            <value>The id.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n            <value>The title.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.Description\">\r\n            <summary>\r\n            Gets or sets the description.\r\n            </summary>\r\n            <value>The description.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets the collection's items converter.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep object reference; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether to preserve collection's items references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> to keep collection's items object references; otherwise, <c>false</c>. The default is <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonContainerAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing the collection's items.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with a flag indicating whether the array can contain null items\r\n            </summary>\r\n            <param name=\"allowNullItems\">A flag indicating whether the array can contain null items.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonArrayAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonArrayAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonArrayAttribute.AllowNullItems\">\r\n            <summary>\r\n            Gets or sets a value indicating whether null items are allowed in the collection.\r\n            </summary>\r\n            <value><c>true</c> if null items are allowed in the collection; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConstructorAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified constructor when deserializing that object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConvert\">\r\n            <summary>\r\n            Provides methods for converting between common language runtime types and JSON types.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"SerializeObject\" title=\"Serializing and Deserializing JSON with JsonConvert\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.True\">\r\n            <summary>\r\n            Represents JavaScript's boolean value true as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.False\">\r\n            <summary>\r\n            Represents JavaScript's boolean value false as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Null\">\r\n            <summary>\r\n            Represents JavaScript's null as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.Undefined\">\r\n            <summary>\r\n            Represents JavaScript's undefined as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.PositiveInfinity\">\r\n            <summary>\r\n            Represents JavaScript's positive infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NegativeInfinity\">\r\n            <summary>\r\n            Represents JavaScript's negative infinity as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonConvert.NaN\">\r\n            <summary>\r\n            Represents JavaScript's NaN as a string. This field is read-only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTime,Newtonsoft.Json.DateFormatHandling,Newtonsoft.Json.DateTimeZoneHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTime\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <param name=\"timeZoneHandling\">The time zone handling when the date is converted to a string.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTime\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.DateTimeOffset\"/> to its JSON string representation using the <see cref=\"T:Newtonsoft.Json.DateFormatHandling\"/> specified.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"format\">The format the date will be converted to.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.DateTimeOffset\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Boolean)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Boolean\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Boolean\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Char\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Char\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Enum)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Enum\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Enum\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt16)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt16\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt16\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt32)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt32\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt32\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Int64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Int64\"/>  to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Int64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.UInt64)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.UInt64\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.UInt64\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Single)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Single\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Single\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Double)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Double\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Double\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Byte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Byte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Byte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.SByte)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.SByte\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Decimal)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Decimal\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.SByte\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Guid)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Guid\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Guid\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.TimeSpan)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.TimeSpan\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.TimeSpan\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Uri)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Uri\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Uri\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.String,System.Char)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.String\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <param name=\"delimiter\">The string delimiter character.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.String\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.ToString(System.Object)\">\r\n            <summary>\r\n            Converts the <see cref=\"T:System.Object\"/> to its JSON string representation.\r\n            </summary>\r\n            <param name=\"value\">The value to convert.</param>\r\n            <returns>A JSON string representation of the <see cref=\"T:System.Object\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection converters used while serializing.</param>\r\n            <returns>A JSON string representation of the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObject(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeObjectAsync(System.Object,Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously serializes the specified object to a JSON string using a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <param name=\"value\">The object to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"settings\">The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to serialize the object.\r\n            If this is null, default serialization settings will be is used.</param>\r\n            <returns>\r\n            A task that represents the asynchronous serialize operation. The value of the <c>TResult</c> parameter contains a JSON string representation of the object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to a .NET object.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>The deserialized object from the Json string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeAnonymousType``1(System.String,``0)\">\r\n            <summary>\r\n            Deserializes the JSON to the given anonymous type.\r\n            </summary>\r\n            <typeparam name=\"T\">\r\n            The anonymous type to deserialize to. This can't be specified\r\n            traditionally and must be infered from the anonymous type passed\r\n            as a parameter.\r\n            </typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"anonymousTypeObject\">The anonymous type object.</param>\r\n            <returns>The deserialized anonymous type from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The object to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize.</param>\r\n            <param name=\"converters\">Converters to use while deserializing.</param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>The deserialized object from the JSON string.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync``1(System.String,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the object to deserialize to.</typeparam>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeObjectAsync(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously deserializes the JSON to the specified .NET type.\r\n            </summary>\r\n            <param name=\"value\">The JSON to deserialize.</param>\r\n            <param name=\"type\">The type of the object to deserialize to.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous deserialize operation. The value of the <c>TResult</c> parameter contains the deserialized object from the JSON string.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObject(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.PopulateObjectAsync(System.String,System.Object,Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Asynchronously populates the object with values from the JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON to populate values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n            <param name=\"settings\">\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> used to deserialize the object.\r\n            If this is null, default serialization settings will be is used.\r\n            </param>\r\n            <returns>\r\n            A task that represents the asynchronous populate operation.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to convert to JSON.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.SerializeXNode(System.Xml.Linq.XObject,Newtonsoft.Json.Formatting,System.Boolean)\">\r\n            <summary>\r\n            Serializes the <see cref=\"T:System.Xml.Linq.XNode\"/> to a JSON string.\r\n            </summary>\r\n            <param name=\"node\">The node to serialize.</param>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"omitRootObject\">Omits writing the root object.</param>\r\n            <returns>A JSON string of the XNode.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConvert.DeserializeXNode(System.String,System.String,System.Boolean)\">\r\n            <summary>\r\n            Deserializes the <see cref=\"T:System.Xml.Linq.XNode\"/> from a JSON string nested in a root elment.\r\n            </summary>\r\n            <param name=\"value\">The JSON string.</param>\r\n            <param name=\"deserializeRootElementName\">The name of the root element to append when deserializing.</param>\r\n            <param name=\"writeArrayAttribute\">\r\n            A flag to indicate whether to write the Json.NET array attribute.\r\n            This attribute helps preserve arrays when converting the written XML back to JSON.\r\n            </param>\r\n            <returns>The deserialized XNode</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to use the specified <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> when serializing the member or class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonConverterAttribute.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonConverterAttribute\"/> class.\r\n            </summary>\r\n            <param name=\"converterType\">Type of the converter.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonConverterAttribute.ConverterType\">\r\n            <summary>\r\n            Gets the type of the converter.\r\n            </summary>\r\n            <value>The type of the converter.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonConverterCollection\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonDictionaryAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the collection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonDictionaryAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonDictionaryAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonIgnoreAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> not to serialize the public field or public read/write property value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonObjectAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> how to serialize the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified member serialization.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member serialization.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonObjectAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonObjectAttribute\"/> class with the specified container Id.\r\n            </summary>\r\n            <param name=\"id\">The container Id.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the member serialization.\r\n            </summary>\r\n            <value>The member serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonObjectAttribute.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonPropertyAttribute\">\r\n            <summary>\r\n            Instructs the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to always serialize the member with the specified name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonPropertyAttribute.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemConverterType\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets the null value handling used when serializing this property.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets the default value handling used when serializing this property.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the reference loop handling used when serializing this property.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets the object creation handling used when deserializing this property.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling used when serializing this property.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's value is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's value is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.Required\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this property is required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether this property is required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonPropertyAttribute.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonReaderException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonReaderException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonReaderException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializationException\">\r\n            <summary>\r\n            The exception thrown when an error occurs during Json serialization or deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializationException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializer\">\r\n            <summary>\r\n            Serializes and deserializes objects into and from the JSON format.\r\n            The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> enables you to control how objects are encoded into JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Create(Newtonsoft.Json.JsonSerializerSettings)\">\r\n            <summary>\r\n            Creates a new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.\r\n            </summary>\r\n            <param name=\"settings\">The settings to be applied to the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.</param>\r\n            <returns>A new <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> instance using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(System.IO.TextReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Populate(Newtonsoft.Json.JsonReader,System.Object)\">\r\n            <summary>\r\n            Populates the JSON values onto the target object.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to reader values from.</param>\r\n            <param name=\"target\">The target object to populate values onto.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that contains the JSON structure to deserialize.</param>\r\n            <returns>The <see cref=\"T:System.Object\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(System.IO.TextReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:System.IO.StringReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:System.IO.TextReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize``1(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <typeparam name=\"T\">The type of the object to deserialize.</typeparam>\r\n            <returns>The instance of <typeparamref name=\"T\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Deserialize(Newtonsoft.Json.JsonReader,System.Type)\">\r\n            <summary>\r\n            Deserializes the Json structure contained by the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>\r\n            into an instance of the specified type.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the object.</param>\r\n            <param name=\"objectType\">The <see cref=\"T:System.Type\"/> of object being deserialized.</param>\r\n            <returns>The instance of <paramref name=\"objectType\"/> being deserialized.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(System.IO.TextWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <see cref=\"T:System.IO.TextWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializer.Serialize(Newtonsoft.Json.JsonWriter,System.Object)\">\r\n            <summary>\r\n            Serializes the specified <see cref=\"T:System.Object\"/> and writes the Json structure\r\n            to a <c>Stream</c> using the specified <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>. \r\n            </summary>\r\n            <param name=\"jsonWriter\">The <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> used to write the Json structure.</param>\r\n            <param name=\"value\">The <see cref=\"T:System.Object\"/> to serialize.</param>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonSerializer.Error\">\r\n            <summary>\r\n            Occurs when the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> errors during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ReferenceLoopHandling\">\r\n            <summary>\r\n            Get or set how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MissingMemberHandling\">\r\n            <summary>\r\n            Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.NullValueHandling\">\r\n            <summary>\r\n            Get or set how null values are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DefaultValueHandling\">\r\n            <summary>\r\n            Get or set how null default are handled during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Converters\">\r\n            <summary>\r\n            Gets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>Collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializer.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional JSON content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonSerializerSettings\">\r\n            <summary>\r\n            Specifies the settings on a <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonSerializerSettings.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonSerializerSettings\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets how reference loops (e.g. a class referencing itself) is handled.\r\n            </summary>\r\n            <value>Reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MissingMemberHandling\">\r\n            <summary>\r\n            Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.\r\n            </summary>\r\n            <value>Missing member handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets or sets how objects are created during deserialization.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.NullValueHandling\">\r\n            <summary>\r\n            Gets or sets how null values are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>Null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DefaultValueHandling\">\r\n            <summary>\r\n            Gets or sets how null default are handled during serialization and deserialization.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Converters\">\r\n            <summary>\r\n            Gets or sets a collection <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> that will be used during serialization.\r\n            </summary>\r\n            <value>The converters.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.PreserveReferencesHandling\">\r\n            <summary>\r\n            Gets or sets how object references are preserved by the serializer.\r\n            </summary>\r\n            <value>The preserve references handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets how type name writing and reading is handled by the serializer.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TypeNameAssemblyFormat\">\r\n            <summary>\r\n            Gets or sets how a type name assembly is written and resolved by the serializer.\r\n            </summary>\r\n            <value>The type name assembly format.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ConstructorHandling\">\r\n            <summary>\r\n            Gets or sets how constructors are used during deserialization.\r\n            </summary>\r\n            <value>The constructor handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver used by the serializer when\r\n            serializing .NET objects to JSON and vice versa.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.ReferenceResolver\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\"/> used by the serializer when resolving references.\r\n            </summary>\r\n            <value>The reference resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.TraceWriter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> used by the serializer when writing trace messages.\r\n            </summary>\r\n            <value>The trace writer.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Binder\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.SerializationBinder\"/> used by the serializer when resolving type names.\r\n            </summary>\r\n            <value>The binder.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Error\">\r\n            <summary>\r\n            Gets or sets the error handler called during serialization and deserialization.\r\n            </summary>\r\n            <value>The error handler called during serialization and deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Context\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:System.Runtime.Serialization.StreamingContext\"/> used by the serializer when invoking serialization callback methods.\r\n            </summary>\r\n            <value>The context.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.MaxDepth\">\r\n            <summary>\r\n            Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a <see cref=\"T:Newtonsoft.Json.JsonReaderException\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Formatting\">\r\n            <summary>\r\n            Indicates how JSON text output is formatted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateFormatHandling\">\r\n            <summary>\r\n            Get or set how dates are written to JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateTimeZoneHandling\">\r\n            <summary>\r\n            Get or set how <see cref=\"T:System.DateTime\"/> time zones are handling during serialization and deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.DateParseHandling\">\r\n            <summary>\r\n            Get or set how date formatted strings, e.g. \"\\/Date(1198908717056)\\/\" and \"2012-03-21T05:40Z\", are parsed when reading JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.Culture\">\r\n            <summary>\r\n            Gets or sets the culture used when reading JSON. Defaults to <see cref=\"P:System.Globalization.CultureInfo.InvariantCulture\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonSerializerSettings.CheckAdditionalContent\">\r\n            <summary>\r\n            Gets a value indicating whether there will be a check for additional content after deserializing an object.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if there will be a check for additional content after deserializing an object; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to JSON text data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.#ctor(System.IO.TextReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> class with the specified <see cref=\"T:System.IO.TextReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <c>TextReader</c> containing the XML data to read.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.DateTimeOffset\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.Close\">\r\n            <summary>\r\n            Changes the state to closed. \r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextReader.HasLineInfo\">\r\n            <summary>\r\n            Gets a value indicating whether the class can return line information.\r\n            </summary>\r\n            <returns>\r\n            \t<c>true</c> if LineNumber and LinePosition can be provided; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LineNumber\">\r\n            <summary>\r\n            Gets the current line number.\r\n            </summary>\r\n            <value>\r\n            The current line number or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextReader.LinePosition\">\r\n            <summary>\r\n            Gets the current line position.\r\n            </summary>\r\n            <value>\r\n            The current line position or 0 if no line information is available (for example, HasLineInfo returns false).\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonTextWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.#ctor(System.IO.TextWriter)\">\r\n            <summary>\r\n            Creates an instance of the <c>JsonWriter</c> class using the specified <see cref=\"T:System.IO.TextWriter\"/>. \r\n            </summary>\r\n            <param name=\"textWriter\">The <c>TextWriter</c> to write to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the specified end token.\r\n            </summary>\r\n            <param name=\"token\">The end token to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndent\">\r\n            <summary>\r\n            Writes indent characters.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValueDelimiter\">\r\n            <summary>\r\n            Writes the JSON value delimiter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteIndentSpace\">\r\n            <summary>\r\n            Writes an indent space.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text. \r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonTextWriter.WriteWhitespace(System.String)\">\r\n            <summary>\r\n            Writes out the given white space.\r\n            </summary>\r\n            <param name=\"ws\">The string of white space characters.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.Indentation\">\r\n            <summary>\r\n            Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteChar\">\r\n            <summary>\r\n            Gets or sets which character to use to quote attribute values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.IndentChar\">\r\n            <summary>\r\n            Gets or sets which character to use for indenting when <see cref=\"T:Newtonsoft.Json.Formatting\"/> is set to <c>Formatting.Indented</c>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonTextWriter.QuoteName\">\r\n            <summary>\r\n            Gets or sets a value indicating whether object names will be surrounded with quotes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonToken\">\r\n            <summary>\r\n            Specifies the type of Json token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.None\">\r\n            <summary>\r\n            This is returned by the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> if a <see cref=\"M:Newtonsoft.Json.JsonReader.Read\"/> method has not been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartObject\">\r\n            <summary>\r\n            An object start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartArray\">\r\n            <summary>\r\n            An array start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.StartConstructor\">\r\n            <summary>\r\n            A constructor start token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.PropertyName\">\r\n            <summary>\r\n            An object property name.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Raw\">\r\n            <summary>\r\n            Raw JSON.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Integer\">\r\n            <summary>\r\n            An integer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Float\">\r\n            <summary>\r\n            A float.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.String\">\r\n            <summary>\r\n            A string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Boolean\">\r\n            <summary>\r\n            A boolean.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Null\">\r\n            <summary>\r\n            A null token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Undefined\">\r\n            <summary>\r\n            An undefined token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndObject\">\r\n            <summary>\r\n            An object end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndArray\">\r\n            <summary>\r\n            An array end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.EndConstructor\">\r\n            <summary>\r\n            A constructor end token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Date\">\r\n            <summary>\r\n            A Date.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.JsonToken.Bytes\">\r\n            <summary>\r\n            Byte data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonValidatingReader\">\r\n            <summary>\r\n            Represents a reader that provides <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> validation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.#ctor(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/> class that\r\n            validates the content returned from the given <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> to read from while validating.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonValidatingReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.JsonValidatingReader.ValidationEventHandler\">\r\n            <summary>\r\n            Sets an event handler for receiving schema validation errors.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Value\">\r\n            <summary>\r\n            Gets the text value of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Depth\">\r\n            <summary>\r\n            Gets the depth of the current token in the JSON document.\r\n            </summary>\r\n            <value>The depth of the current token in the JSON document.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Path\">\r\n            <summary>\r\n            Gets the path of the current JSON token. \r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.QuoteChar\">\r\n            <summary>\r\n            Gets the quotation mark character used to enclose the value of a string.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.TokenType\">\r\n            <summary>\r\n            Gets the type of the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.ValueType\">\r\n            <summary>\r\n            Gets the Common Language Runtime (CLR) type for the current Json token.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Schema\">\r\n            <summary>\r\n            Gets or sets the schema.\r\n            </summary>\r\n            <value>The schema.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonValidatingReader.Reader\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.JsonReader\"/> used to construct this <see cref=\"T:Newtonsoft.Json.JsonValidatingReader\"/>.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> specified in the constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.JsonWriterException\">\r\n            <summary>\r\n            The exception thrown when an error occurs while reading Json text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.JsonWriterException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.JsonWriterException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.JsonWriterException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.Extensions\">\r\n            <summary>\r\n            Contains the LINQ to JSON extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Ancestors``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the ancestors of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the ancestors of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Descendants``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of tokens that contains the descendants of every token in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of the objects in source, constrained to <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the descendants of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Properties(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JObject})\">\r\n            <summary>\r\n            Returns a collection of child properties of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the properties of every object in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of child values of every object in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken},System.Object)\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection with the given key.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection with the given key.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Values``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns a collection of converted child values of every object in the source collection.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``1(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Value``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Converts the value.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <typeparam name=\"U\">The type to convert the value to.</typeparam>\r\n            <param name=\"value\">A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> cast as a <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A converted value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of child tokens of every array in the source collection.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.Children``2(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns a collection of converted child tokens of every array in the source collection.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <typeparam name=\"U\">The type to convert the values to.</typeparam>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> that contains the converted values of every node in the source collection.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable(System.Collections.Generic.IEnumerable{Newtonsoft.Json.Linq.JToken})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.Extensions.AsJEnumerable``1(System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Returns the input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The source collection type.</typeparam>\r\n            <param name=\"source\">An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the source collection.</param>\r\n            <returns>The input typed as <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/>.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.IJEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JArray\">\r\n            <summary>\r\n            Represents a JSON array.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JContainer\">\r\n            <summary>\r\n            Represents a token that can contain other tokens.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Represents an abstract JSON token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Compares the values of two tokens, including the values of all descendant tokens.\r\n            </summary>\r\n            <param name=\"t1\">The first <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"t2\">The second <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>true if the tokens are equal; otherwise false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddAfterSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately after this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added after this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AddBeforeSelf(System.Object)\">\r\n            <summary>\r\n            Adds the specified content immediately before this token.\r\n            </summary>\r\n            <param name=\"content\">A content object that contains simple content or a collection of content objects to be added before this token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Ancestors\">\r\n            <summary>\r\n            Returns a collection of the ancestor tokens of this token.\r\n            </summary>\r\n            <returns>A collection of the ancestor tokens of this token.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.AfterSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens after this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens after this tokens, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.BeforeSelf\">\r\n            <summary>\r\n            Returns a collection of the sibling tokens before this token, in document order.\r\n            </summary>\r\n            <returns>A collection of the sibling tokens before this token, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Value``1(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key converted to the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the token to.</typeparam>\r\n            <param name=\"key\">The token key.</param>\r\n            <returns>The converted token value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Children``1\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order, filtered by the specified type.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to filter the child tokens on.</typeparam>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Remove\">\r\n            <summary>\r\n            Removes this token from its parent.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Replace(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Replaces this token with the specified token.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString\">\r\n            <summary>\r\n            Returns the indented JSON for this token.\r\n            </summary>\r\n            <returns>\r\n            The indented JSON for this token.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Returns the JSON for this token using the given formatting and converters.\r\n            </summary>\r\n            <param name=\"formatting\">Indicates how the output is formatted.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n            <returns>The JSON for this token using the given formatting and converters.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Boolean\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Boolean\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTimeOffset\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTimeOffset\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Boolean}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTime}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.DateTimeOffset}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Decimal}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Double}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Char}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Int16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Int16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt16\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt16\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Char\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Char\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt16}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Byte}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.DateTime\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.DateTime\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Int64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Single}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Decimal\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Decimal\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt32}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.UInt64}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Double\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Double\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Single\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Single\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.String\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt32\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt32\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.UInt64\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.UInt64\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Byte[]\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Byte[]\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Guid\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.Guid}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Guid\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.TimeSpan\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Nullable{System.TimeSpan}\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.TimeSpan\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Explicit(Newtonsoft.Json.Linq.JToken)~System.Uri\">\r\n            <summary>\r\n            Performs an explicit conversion from <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to <see cref=\"T:System.Uri\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>The result of the conversion.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Boolean)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Boolean\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTimeOffset)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTimeOffset\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Boolean})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTime})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.DateTimeOffset})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Decimal})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Double})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt16)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt16\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Int32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Int32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.DateTime)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.DateTime\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Single})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Decimal)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Decimal\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Int16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt16})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt32})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.UInt64})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Double)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Double\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Single)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Single\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.String)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.String\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt32)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt32\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.UInt64)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.UInt64\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Byte[])~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Byte[]\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Uri)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Uri\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.TimeSpan)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.TimeSpan\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.TimeSpan})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Guid)~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Guid\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.op_Implicit(System.Nullable{System.Guid})~Newtonsoft.Json.Linq.JToken\">\r\n            <summary>\r\n            Performs an implicit conversion from <see cref=\"T:System.Nullable`1\"/> to <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"value\">The value to create a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> from.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> initialized with the specified value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.CreateReader\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonReader\"/> for this token.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that can be used to read this token and its descendants.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from an object using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when reading the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the value of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject``1(Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type that the token will be deserialized to.</typeparam>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ToObject(System.Type,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates the specified .NET type from the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> using the specified <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <param name=\"objectType\">The object type that the token will be deserialized to.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used when creating the object.</param>\r\n            <returns>The new object created from the JSON value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.ReadFrom(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">An <see cref=\"T:Newtonsoft.Json.JsonReader\"/> positioned at the token to read into this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</param>\r\n            <returns>\r\n            An <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the token and its descendant tokens\r\n            that were read from the reader. The runtime type of the token is determined\r\n            by the token type of the first token encountered in the reader.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path or a null reference if no matching token is found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.SelectToken(System.String,System.Boolean)\">\r\n            <summary>\r\n            Selects the token that matches the object path.\r\n            </summary>\r\n            <param name=\"path\">\r\n            The object path from the current <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>\r\n            to be returned. This must be a string of property names or array indexes separated\r\n            by periods, such as <code>Tables[0].DefaultView[0].Price</code> in C# or\r\n            <code>Tables(0).DefaultView(0).Price</code> in Visual Basic.\r\n            </param>\r\n            <param name=\"errorWhenNoMatch\">A flag to indicate whether an error should be thrown if no token is found.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that matches the object path.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.System#Dynamic#IDynamicMetaObjectProvider#GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JToken.DeepClone\">\r\n            <summary>\r\n            Creates a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>. All child tokens are recursively cloned.\r\n            </summary>\r\n            <returns>A new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.EqualityComparer\">\r\n            <summary>\r\n            Gets a comparer that can compare two tokens for value equality.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\"/> that can compare two nodes for value equality.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Parent\">\r\n            <summary>\r\n            Gets or sets the parent.\r\n            </summary>\r\n            <value>The parent.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Root\">\r\n            <summary>\r\n            Gets the root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The root <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Next\">\r\n            <summary>\r\n            Gets the next sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the next sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Previous\">\r\n            <summary>\r\n            Gets the previous sibling token of this node.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> that contains the previous sibling token.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JToken.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\"/> event.\r\n            </summary>\r\n            <param name=\"e\">The <see cref=\"T:System.Collections.Specialized.NotifyCollectionChangedEventArgs\"/> instance containing the event data.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Children\">\r\n            <summary>\r\n            Returns a collection of the child tokens of this token, in document order.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the child tokens of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Values``1\">\r\n            <summary>\r\n            Returns a collection of the child values of this token, in document order.\r\n            </summary>\r\n            <typeparam name=\"T\">The type to convert the values to.</typeparam>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the child values of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>, in document order.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Descendants\">\r\n            <summary>\r\n            Returns a collection of the descendant tokens for this token in document order.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> containing the descendant tokens of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.Add(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.AddFirst(System.Object)\">\r\n            <summary>\r\n            Adds the specified content as the first children of this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"content\">The content to be added.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.CreateWriter\">\r\n            <summary>\r\n            Creates an <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that can be used to add tokens to the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> that is ready to have content written to it.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.ReplaceAll(System.Object)\">\r\n            <summary>\r\n            Replaces the children nodes of this token with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JContainer.RemoveAll\">\r\n            <summary>\r\n            Removes the child nodes from this token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JContainer.CollectionChanged\">\r\n            <summary>\r\n            Occurs when the items list of the collection has changed, or the collection is reset.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.First\">\r\n            <summary>\r\n            Get the first child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the first child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Last\">\r\n            <summary>\r\n            Get the last child token of this token.\r\n            </summary>\r\n            <value>\r\n            A <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> containing the last child token of the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JContainer.Count\">\r\n            <summary>\r\n            Gets the count of child JSON tokens.\r\n            </summary>\r\n            <value>The count of child JSON tokens</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(Newtonsoft.Json.Linq.JArray)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the array.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParseArray\" title=\"Parsing a JSON Array from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.IndexOf(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines the index of a specific item in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <returns>\r\n            The index of <paramref name=\"item\"/> if found in the list; otherwise, -1.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Inserts an item to the <see cref=\"T:System.Collections.Generic.IList`1\"/> at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index at which <paramref name=\"item\"/> should be inserted.</param>\r\n            <param name=\"item\">The object to insert into the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.RemoveAt(System.Int32)\">\r\n            <summary>\r\n            Removes the <see cref=\"T:System.Collections.Generic.IList`1\"/> item at the specified index.\r\n            </summary>\r\n            <param name=\"index\">The zero-based index of the item to remove.</param>\r\n            <exception cref=\"T:System.ArgumentOutOfRangeException\">\r\n            \t<paramref name=\"index\"/> is not a valid index in the <see cref=\"T:System.Collections.Generic.IList`1\"/>.</exception>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.IList`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Add(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds an item to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to add to the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Clear\">\r\n            <summary>\r\n            Removes all items from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only. </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Contains(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:System.Collections.Generic.ICollection`1\"/> contains a specific value.\r\n            </summary>\r\n            <param name=\"item\">The object to locate in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> is found in the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JArray.Remove(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Removes the first occurrence of a specific object from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </summary>\r\n            <param name=\"item\">The object to remove from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.</param>\r\n            <returns>\r\n            true if <paramref name=\"item\"/> was successfully removed from the <see cref=\"T:System.Collections.Generic.ICollection`1\"/>; otherwise, false. This method also returns false if <paramref name=\"item\"/> is not found in the original <see cref=\"T:System.Collections.Generic.ICollection`1\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.NotSupportedException\">The <see cref=\"T:System.Collections.Generic.ICollection`1\"/> is read-only.</exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JArray.Item(System.Int32)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> at the specified index.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JConstructor\">\r\n            <summary>\r\n            Represents a JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(Newtonsoft.Json.Linq.JConstructor)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name and content.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n            <param name=\"content\">The contents of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> class with the specified name.\r\n            </summary>\r\n            <param name=\"name\">The constructor name.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JConstructor.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JConstructor\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Name\">\r\n            <summary>\r\n            Gets or sets the name of this constructor.\r\n            </summary>\r\n            <value>The constructor name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JConstructor.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JEnumerable`1\">\r\n            <summary>\r\n            Represents a collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n            <typeparam name=\"T\">The type of token</typeparam>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JEnumerable`1.Empty\">\r\n            <summary>\r\n            An empty collection of <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.#ctor(System.Collections.Generic.IEnumerable{`0})\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> struct.\r\n            </summary>\r\n            <param name=\"enumerable\">The enumerable.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.System#Collections#IEnumerable#GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through a collection.\r\n            </summary>\r\n            <returns>\r\n            An <see cref=\"T:System.Collections.IEnumerator\"/> object that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to this instance.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with this instance.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:System.Object\"/> is equal to this instance; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JEnumerable`1.GetHashCode\">\r\n            <summary>\r\n            Returns a hash code for this instance.\r\n            </summary>\r\n            <returns>\r\n            A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. \r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JEnumerable`1.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.IJEnumerable`1\"/> with the specified key.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JObject\">\r\n            <summary>\r\n            Represents a JSON object.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\" />\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(Newtonsoft.Json.Linq.JObject)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> class with the specified content.\r\n            </summary>\r\n            <param name=\"content\">The contents of the object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Properties\">\r\n            <summary>\r\n            Gets an <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.\r\n            </summary>\r\n            <returns>An <see cref=\"T:System.Collections.Generic.IEnumerable`1\"/> of this object's properties.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Property(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> the specified name.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> with the specified name or null.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.PropertyValues\">\r\n            <summary>\r\n            Gets an <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.\r\n            </summary>\r\n            <returns>An <see cref=\"T:Newtonsoft.Json.Linq.JEnumerable`1\"/> of this object's property values.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from a string that contains JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> populated from the string that contains JSON.</returns>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\LinqToJsonTests.cs\" region=\"LinqToJsonCreateParse\" title=\"Parsing a JSON Object from Text\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JObject\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.FromObject(System.Object,Newtonsoft.Json.JsonSerializer)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> from an object.\r\n            </summary>\r\n            <param name=\"o\">The object that will be used to create <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/>.</param>\r\n            <param name=\"jsonSerializer\">The <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> that will be used to read the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JArray\"/> with the values of the specified object</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetValue(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,System.StringComparison,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries to get the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            The exact property name will be searched for first and if no matching property is found then\r\n            the <see cref=\"T:System.StringComparison\"/> will be used to match a property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <param name=\"comparison\">One of the enumeration values that specifies how the strings will be compared.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Add(System.String,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Adds the specified property name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.Remove(System.String)\">\r\n            <summary>\r\n            Removes the property with the specified name.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>true if item was successfully removed; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.TryGetValue(System.String,Newtonsoft.Json.Linq.JToken@)\">\r\n            <summary>\r\n            Tries the get value.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>true if a value was successfully retrieved; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetEnumerator\">\r\n            <summary>\r\n            Returns an enumerator that iterates through the collection.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.Collections.Generic.IEnumerator`1\"/> that can be used to iterate through the collection.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.OnPropertyChanged(System.String)\">\r\n            <summary>\r\n            Raises the <see cref=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\"/> event with the provided arguments.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JObject.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"E:Newtonsoft.Json.Linq.JObject.PropertyChanged\">\r\n            <summary>\r\n            Occurs when a property value changes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.Object)\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified key.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JObject.Item(System.String)\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> with the specified property name.\r\n            </summary>\r\n            <value></value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JProperty\">\r\n            <summary>\r\n            Represents a JSON property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(Newtonsoft.Json.Linq.JProperty)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object[])\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.#ctor(System.String,System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> class.\r\n            </summary>\r\n            <param name=\"name\">The property name.</param>\r\n            <param name=\"content\">The property content.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JProperty.Load(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Loads an <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> from a <see cref=\"T:Newtonsoft.Json.JsonReader\"/>. \r\n            </summary>\r\n            <param name=\"reader\">A <see cref=\"T:Newtonsoft.Json.JsonReader\"/> that will be read for the content of the <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/>.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JProperty\"/> that contains the JSON that was read from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.ChildrenTokens\">\r\n            <summary>\r\n            Gets the container's children tokens.\r\n            </summary>\r\n            <value>The container's children tokens.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Name\">\r\n            <summary>\r\n            Gets the property name.\r\n            </summary>\r\n            <value>The property name.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Value\">\r\n            <summary>\r\n            Gets or sets the property value.\r\n            </summary>\r\n            <value>The property value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JProperty.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JRaw\">\r\n            <summary>\r\n            Represents a raw JSON string.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JValue\">\r\n            <summary>\r\n            Represents a value in JSON (string, integer, date, etc).\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Int64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Char)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.UInt64)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Double)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Single)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.DateTime)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Guid)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Uri)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.TimeSpan)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> class with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateComment(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> comment with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CreateString(System.String)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.\r\n            </summary>\r\n            <param name=\"value\">The value.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Linq.JValue\"/> string with the given value.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])\">\r\n            <summary>\r\n            Writes this token to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"converters\">A collection of <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> which will be used when writing the token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Indicates whether the current object is equal to another object of the same type.\r\n            </summary>\r\n            <returns>\r\n            true if the current object is equal to the <paramref name=\"other\"/> parameter; otherwise, false.\r\n            </returns>\r\n            <param name=\"other\">An object to compare with this object.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.Equals(System.Object)\">\r\n            <summary>\r\n            Determines whether the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> to compare with the current <see cref=\"T:System.Object\"/>.</param>\r\n            <returns>\r\n            true if the specified <see cref=\"T:System.Object\"/> is equal to the current <see cref=\"T:System.Object\"/>; otherwise, false.\r\n            </returns>\r\n            <exception cref=\"T:System.NullReferenceException\">\r\n            The <paramref name=\"obj\"/> parameter is null.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetHashCode\">\r\n            <summary>\r\n            Serves as a hash function for a particular type.\r\n            </summary>\r\n            <returns>\r\n            A hash code for the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.ToString(System.String,System.IFormatProvider)\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <param name=\"format\">The format.</param>\r\n            <param name=\"formatProvider\">The format provider.</param>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.GetMetaObject(System.Linq.Expressions.Expression)\">\r\n            <summary>\r\n            Returns the <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> responsible for binding operations performed on this object.\r\n            </summary>\r\n            <param name=\"parameter\">The expression tree representation of the runtime value.</param>\r\n            <returns>\r\n            The <see cref=\"T:System.Dynamic.DynamicMetaObject\"/> to bind this object.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JValue.CompareTo(Newtonsoft.Json.Linq.JValue)\">\r\n            <summary>\r\n            Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.\r\n            </summary>\r\n            <param name=\"obj\">An object to compare with this instance.</param>\r\n            <returns>\r\n            A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:\r\n            Value\r\n            Meaning\r\n            Less than zero\r\n            This instance is less than <paramref name=\"obj\"/>.\r\n            Zero\r\n            This instance is equal to <paramref name=\"obj\"/>.\r\n            Greater than zero\r\n            This instance is greater than <paramref name=\"obj\"/>.\r\n            </returns>\r\n            <exception cref=\"T:System.ArgumentException\">\r\n            \t<paramref name=\"obj\"/> is not the same type as this instance.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.HasValues\">\r\n            <summary>\r\n            Gets a value indicating whether this token has childen tokens.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this token has child values; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Type\">\r\n            <summary>\r\n            Gets the node type for this <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JValue.Value\">\r\n            <summary>\r\n            Gets or sets the underlying token value.\r\n            </summary>\r\n            <value>The underlying token value.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(Newtonsoft.Json.Linq.JRaw)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class from another <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object.\r\n            </summary>\r\n            <param name=\"other\">A <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> object to copy from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.#ctor(System.Object)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> class.\r\n            </summary>\r\n            <param name=\"rawJson\">The raw json.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JRaw.Create(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Creates an instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.\r\n            </summary>\r\n            <param name=\"reader\">The reader.</param>\r\n            <returns>An instance of <see cref=\"T:Newtonsoft.Json.Linq.JRaw\"/> with the content of the reader's current token.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenEqualityComparer\">\r\n            <summary>\r\n            Compares tokens to determine whether they are equal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Determines whether the specified objects are equal.\r\n            </summary>\r\n            <param name=\"x\">The first object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <param name=\"y\">The second object of type <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to compare.</param>\r\n            <returns>\r\n            true if the specified objects are equal; otherwise, false.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenEqualityComparer.GetHashCode(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Returns a hash code for the specified object.\r\n            </summary>\r\n            <param name=\"obj\">The <see cref=\"T:System.Object\"/> for which a hash code is to be returned.</param>\r\n            <returns>A hash code for the specified object.</returns>\r\n            <exception cref=\"T:System.ArgumentNullException\">The type of <paramref name=\"obj\"/> is a reference type and <paramref name=\"obj\"/> is null.</exception>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenReader\">\r\n            <summary>\r\n            Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.#ctor(Newtonsoft.Json.Linq.JToken)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenReader\"/> class.\r\n            </summary>\r\n            <param name=\"token\">The token to read from.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsBytes\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:Byte[]\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:Byte[]\"/> or a null reference if the next JSON token is null. This method will return <c>null</c> at the end of an array.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDecimal\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsInt32\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsString\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.String\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTime\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.String\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.ReadAsDateTimeOffset\">\r\n            <summary>\r\n            Reads the next JSON token from the stream as a <see cref=\"T:System.Nullable`1\"/>.\r\n            </summary>\r\n            <returns>A <see cref=\"T:System.Nullable`1\"/>. This method will return <c>null</c> at the end of an array.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenReader.Read\">\r\n            <summary>\r\n            Reads the next JSON token from the stream.\r\n            </summary>\r\n            <returns>\r\n            true if the next token was read successfully; false if there are no more tokens to read.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenType\">\r\n            <summary>\r\n            Specifies the type of token.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.None\">\r\n            <summary>\r\n            No token type has been set.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Object\">\r\n            <summary>\r\n            A JSON object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Array\">\r\n            <summary>\r\n            A JSON array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Constructor\">\r\n            <summary>\r\n            A JSON constructor.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Property\">\r\n            <summary>\r\n            A JSON object property.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Comment\">\r\n            <summary>\r\n            A comment.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Integer\">\r\n            <summary>\r\n            An integer value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Float\">\r\n            <summary>\r\n            A float value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.String\">\r\n            <summary>\r\n            A string value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Boolean\">\r\n            <summary>\r\n            A boolean value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Null\">\r\n            <summary>\r\n            A null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Undefined\">\r\n            <summary>\r\n            An undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Date\">\r\n            <summary>\r\n            A date value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Raw\">\r\n            <summary>\r\n            A raw JSON value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Bytes\">\r\n            <summary>\r\n            A collection of bytes value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Guid\">\r\n            <summary>\r\n            A Guid value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.Uri\">\r\n            <summary>\r\n            A Uri value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Linq.JTokenType.TimeSpan\">\r\n            <summary>\r\n            A TimeSpan value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Linq.JTokenWriter\">\r\n            <summary>\r\n            Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor(Newtonsoft.Json.Linq.JContainer)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class writing to the given <see cref=\"T:Newtonsoft.Json.Linq.JContainer\"/>.\r\n            </summary>\r\n            <param name=\"container\">The container being written to.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Linq.JTokenWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Flush\">\r\n            <summary>\r\n            Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.Close\">\r\n            <summary>\r\n            Closes this stream and the underlying stream.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartObject\">\r\n            <summary>\r\n            Writes the beginning of a Json object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartArray\">\r\n            <summary>\r\n            Writes the beginning of a Json array.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteStartConstructor(System.String)\">\r\n            <summary>\r\n            Writes the start of a constructor with the given name.\r\n            </summary>\r\n            <param name=\"name\">The name of the constructor.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteEnd(Newtonsoft.Json.JsonToken)\">\r\n            <summary>\r\n            Writes the end.\r\n            </summary>\r\n            <param name=\"token\">The token.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WritePropertyName(System.String)\">\r\n            <summary>\r\n            Writes the property name of a name/value pair on a Json object.\r\n            </summary>\r\n            <param name=\"name\">The name of the property.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteNull\">\r\n            <summary>\r\n            Writes a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteUndefined\">\r\n            <summary>\r\n            Writes an undefined value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteRaw(System.String)\">\r\n            <summary>\r\n            Writes raw JSON.\r\n            </summary>\r\n            <param name=\"json\">The raw JSON to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteComment(System.String)\">\r\n            <summary>\r\n            Writes out a comment <code>/*...*/</code> containing the specified text.\r\n            </summary>\r\n            <param name=\"text\">Text to place inside the comment.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.String)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.String\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.String\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt32)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt32\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt32\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt64)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt64\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt64\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Single)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Single\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Single\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Double)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Double\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Double\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Boolean)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Boolean\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Boolean\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Int16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Int16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Int16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.UInt16)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.UInt16\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.UInt16\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Char)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Char\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Char\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Byte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Byte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.SByte)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.SByte\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.SByte\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Decimal)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Decimal\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Decimal\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTime)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTime\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTime\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.DateTimeOffset)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.DateTimeOffset\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.DateTimeOffset\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Byte[])\">\r\n            <summary>\r\n            Writes a <see cref=\"T:Byte[]\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:Byte[]\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.TimeSpan)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.TimeSpan\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.TimeSpan\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Guid)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Guid\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Guid\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Linq.JTokenWriter.WriteValue(System.Uri)\">\r\n            <summary>\r\n            Writes a <see cref=\"T:System.Uri\"/> value.\r\n            </summary>\r\n            <param name=\"value\">The <see cref=\"T:System.Uri\"/> value to write.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Linq.JTokenWriter.Token\">\r\n            <summary>\r\n            Gets the token being writen.\r\n            </summary>\r\n            <value>The token being writen.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MemberSerialization\">\r\n            <summary>\r\n            Specifies the member serialization options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptOut\">\r\n            <summary>\r\n            All public members are serialized by default. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This is the default member serialization mode.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.OptIn\">\r\n            <summary>\r\n            Only members must be marked with <see cref=\"T:Newtonsoft.Json.JsonPropertyAttribute\"/> or <see cref=\"T:System.Runtime.Serialization.DataMemberAttribute\"/> are serialized.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"T:System.Runtime.Serialization.DataContractAttribute\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MemberSerialization.Fields\">\r\n            <summary>\r\n            All public and private fields are serialized. Members can be excluded using <see cref=\"T:Newtonsoft.Json.JsonIgnoreAttribute\"/> or <see cref=\"!:NonSerializedAttribute\"/>.\r\n            This member serialization mode can also be set by marking the class with <see cref=\"!:SerializableAttribute\"/>\r\n            and setting IgnoreSerializableAttribute on <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> to false.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.MissingMemberHandling\">\r\n            <summary>\r\n            Specifies missing member handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Ignore\">\r\n            <summary>\r\n            Ignore a missing member and do not attempt to deserialize it.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.MissingMemberHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a missing member is encountered during deserialization.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.NullValueHandling\">\r\n            <summary>\r\n            Specifies null value handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingObject\" title=\"NullValueHandling Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeNullValueHandlingExample\" title=\"NullValueHandling Ignore Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Include\">\r\n            <summary>\r\n            Include null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.NullValueHandling.Ignore\">\r\n            <summary>\r\n            Ignore null values when serializing and deserializing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ObjectCreationHandling\">\r\n            <summary>\r\n            Specifies how object creation is handled by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Auto\">\r\n            <summary>\r\n            Reuse existing objects, create new objects when needed.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Reuse\">\r\n            <summary>\r\n            Only reuse existing objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ObjectCreationHandling.Replace\">\r\n            <summary>\r\n            Always create new objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.PreserveReferencesHandling\">\r\n            <summary>\r\n            Specifies reference handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"PreservingObjectReferencesOn\" title=\"Preserve Object References\"/>       \r\n            </example>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.None\">\r\n            <summary>\r\n            Do not preserve references when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Objects\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.Arrays\">\r\n            <summary>\r\n            Preserve references when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.PreserveReferencesHandling.All\">\r\n            <summary>\r\n            Preserve references when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.ReferenceLoopHandling\">\r\n            <summary>\r\n            Specifies reference loop handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Error\">\r\n            <summary>\r\n            Throw a <see cref=\"T:Newtonsoft.Json.JsonSerializationException\"/> when a loop is encountered.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Ignore\">\r\n            <summary>\r\n            Ignore loop references and do not serialize.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.ReferenceLoopHandling.Serialize\">\r\n            <summary>\r\n            Serialize loop references.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Required\">\r\n            <summary>\r\n            Indicating whether a property is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Default\">\r\n            <summary>\r\n            The property is not required. The default state.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.AllowNull\">\r\n            <summary>\r\n            The property must be defined in JSON but can be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Required.Always\">\r\n            <summary>\r\n            The property must be defined in JSON and cannot be a null value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.Extensions\">\r\n            <summary>\r\n            Contains the JSON schema extension methods.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.IsValid(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,System.Collections.Generic.IList{System.String}@)\">\r\n            <summary>\r\n            Determines whether the <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"errorMessages\">When this method returns, contains any error messages generated while validating. </param>\r\n            <returns>\r\n            \t<c>true</c> if the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> is valid; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.Extensions.Validate(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Schema.JsonSchema,Newtonsoft.Json.Schema.ValidationEventHandler)\">\r\n            <summary>\r\n            Validates the specified <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/>.\r\n            </summary>\r\n            <param name=\"source\">The source <see cref=\"T:Newtonsoft.Json.Linq.JToken\"/> to test.</param>\r\n            <param name=\"schema\">The schema to test with.</param>\r\n            <param name=\"validationEventHandler\">The validation event handler.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchema\">\r\n            <summary>\r\n            An in-memory representation of a JSON Schema.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Read(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Reads a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified <see cref=\"T:Newtonsoft.Json.JsonReader\"/>.\r\n            </summary>\r\n            <param name=\"reader\">The <see cref=\"T:Newtonsoft.Json.JsonReader\"/> containing the JSON Schema to read.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> to use when resolving schema references.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> object representing the JSON Schema.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String)\">\r\n            <summary>\r\n            Load a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a string that contains schema JSON.\r\n            </summary>\r\n            <param name=\"json\">A <see cref=\"T:System.String\"/> that contains JSON.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.Parse(System.String,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Parses the specified json.\r\n            </summary>\r\n            <param name=\"json\">The json.</param>\r\n            <param name=\"resolver\">The resolver.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> populated from the string that contains JSON.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Writes this schema to a <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> using the specified <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/>.\r\n            </summary>\r\n            <param name=\"writer\">A <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> into which this method will write.</param>\r\n            <param name=\"resolver\">The resolver used.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchema.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents the current <see cref=\"T:System.Object\"/>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Id\">\r\n            <summary>\r\n            Gets or sets the id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Title\">\r\n            <summary>\r\n            Gets or sets the title.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Required\">\r\n            <summary>\r\n            Gets or sets whether the object is required.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ReadOnly\">\r\n            <summary>\r\n            Gets or sets whether the object is read only.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Hidden\">\r\n            <summary>\r\n            Gets or sets whether the object is visible to users.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Transient\">\r\n            <summary>\r\n            Gets or sets whether the object is transient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Description\">\r\n            <summary>\r\n            Gets or sets the description of the object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Type\">\r\n            <summary>\r\n            Gets or sets the types of values allowed by the object.\r\n            </summary>\r\n            <value>The type.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Pattern\">\r\n            <summary>\r\n            Gets or sets the pattern.\r\n            </summary>\r\n            <value>The pattern.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumLength\">\r\n            <summary>\r\n            Gets or sets the minimum length.\r\n            </summary>\r\n            <value>The minimum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumLength\">\r\n            <summary>\r\n            Gets or sets the maximum length.\r\n            </summary>\r\n            <value>The maximum length.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.DivisibleBy\">\r\n            <summary>\r\n            Gets or sets a number that the value should be divisble by.\r\n            </summary>\r\n            <value>A number that the value should be divisble by.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Minimum\">\r\n            <summary>\r\n            Gets or sets the minimum.\r\n            </summary>\r\n            <value>The minimum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Maximum\">\r\n            <summary>\r\n            Gets or sets the maximum.\r\n            </summary>\r\n            <value>The maximum.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMinimum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"minimum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.ExclusiveMaximum\">\r\n            <summary>\r\n            Gets or sets a flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.\r\n            </summary>\r\n            <value>A flag indicating whether the value can not equal the number defined by the \"maximum\" attribute.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MinimumItems\">\r\n            <summary>\r\n            Gets or sets the minimum number of items.\r\n            </summary>\r\n            <value>The minimum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.MaximumItems\">\r\n            <summary>\r\n            Gets or sets the maximum number of items.\r\n            </summary>\r\n            <value>The maximum number of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Items\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Properties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AdditionalProperties\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> of additional properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.PatternProperties\">\r\n            <summary>\r\n            Gets or sets the pattern properties.\r\n            </summary>\r\n            <value>The pattern properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.AllowAdditionalProperties\">\r\n            <summary>\r\n            Gets or sets a value indicating whether additional properties are allowed.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if additional properties are allowed; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Requires\">\r\n            <summary>\r\n            Gets or sets the required property if this property is present.\r\n            </summary>\r\n            <value>The required property if this property is present.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Identity\">\r\n            <summary>\r\n            Gets or sets the identity.\r\n            </summary>\r\n            <value>The identity.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Enum\">\r\n            <summary>\r\n            Gets or sets the a collection of valid enum values allowed.\r\n            </summary>\r\n            <value>A collection of valid enum values allowed.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Options\">\r\n            <summary>\r\n            Gets or sets a collection of options.\r\n            </summary>\r\n            <value>A collection of options.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Disallow\">\r\n            <summary>\r\n            Gets or sets disallowed types.\r\n            </summary>\r\n            <value>The disallow types.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Default\">\r\n            <summary>\r\n            Gets or sets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Extends\">\r\n            <summary>\r\n            Gets or sets the extend <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n            <value>The extended <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchema.Format\">\r\n            <summary>\r\n            Gets or sets the format.\r\n            </summary>\r\n            <value>The format.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaException\">\r\n            <summary>\r\n            Returns detailed information about the schema exception.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaException.#ctor(System.String,System.Exception)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> class\r\n            with a specified error message and a reference to the inner exception that is the cause of this exception.\r\n            </summary>\r\n            <param name=\"message\">The error message that explains the reason for the exception.</param>\r\n            <param name=\"innerException\">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LineNumber\">\r\n            <summary>\r\n            Gets the line number indicating where the error occurred.\r\n            </summary>\r\n            <value>The line number indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.LinePosition\">\r\n            <summary>\r\n            Gets the line position indicating where the error occurred.\r\n            </summary>\r\n            <value>The line position indicating where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaException.Path\">\r\n            <summary>\r\n            Gets the path to the JSON where the error occurred.\r\n            </summary>\r\n            <value>The path to the JSON where the error occurred.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\">\r\n            <summary>\r\n            Generates a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from a specified <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaGenerator.Generate(System.Type,Newtonsoft.Json.Schema.JsonSchemaResolver,System.Boolean)\">\r\n            <summary>\r\n            Generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from the specified type.\r\n            </summary>\r\n            <param name=\"type\">The type to generate a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from.</param>\r\n            <param name=\"resolver\">The <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> used to resolve schema references.</param>\r\n            <param name=\"rootSchemaNullable\">Specify whether the generated root <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> will be nullable.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> generated from the specified type.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Gets or sets how undefined schemas are handled by the serializer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaGenerator.ContractResolver\">\r\n            <summary>\r\n            Gets or sets the contract resolver.\r\n            </summary>\r\n            <value>The contract resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\">\r\n            <summary>\r\n            Resolves <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> from an id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Schema.JsonSchemaResolver.GetSchema(System.String)\">\r\n            <summary>\r\n            Gets a <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.\r\n            </summary>\r\n            <param name=\"id\">The id.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/> for the specified id.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.JsonSchemaResolver.LoadedSchemas\">\r\n            <summary>\r\n            Gets or sets the loaded schemas.\r\n            </summary>\r\n            <value>The loaded schemas.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.JsonSchemaType\">\r\n            <summary>\r\n            The value types allowed by the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchema\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.None\">\r\n            <summary>\r\n            No type specified.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.String\">\r\n            <summary>\r\n            String type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Float\">\r\n            <summary>\r\n            Float type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Integer\">\r\n            <summary>\r\n            Integer type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Boolean\">\r\n            <summary>\r\n            Boolean type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Object\">\r\n            <summary>\r\n            Object type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Array\">\r\n            <summary>\r\n            Array type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Null\">\r\n            <summary>\r\n            Null type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.JsonSchemaType.Any\">\r\n            <summary>\r\n            Any type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling\">\r\n            <summary>\r\n            Specifies undefined schema Id handling options for the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaGenerator\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.None\">\r\n            <summary>\r\n            Do not infer a schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseTypeName\">\r\n            <summary>\r\n            Use the .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.Schema.UndefinedSchemaIdHandling.UseAssemblyQualifiedName\">\r\n            <summary>\r\n            Use the assembly qualified .NET type name as the schema Id.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\">\r\n            <summary>\r\n            Returns detailed information related to the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Exception\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Schema.JsonSchemaException\"/> associated with the validation error.\r\n            </summary>\r\n            <value>The JsonSchemaException associated with the validation error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the validation error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the validation error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Schema.ValidationEventArgs.Message\">\r\n            <summary>\r\n            Gets the text description corresponding to the validation error.\r\n            </summary>\r\n            <value>The text description.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Schema.ValidationEventHandler\">\r\n            <summary>\r\n            Represents the callback method that will handle JSON schema validation events and the <see cref=\"T:Newtonsoft.Json.Schema.ValidationEventArgs\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.SerializationBinder\">\r\n            <summary>\r\n            Allows users to control class loading and mandate what class to load.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object</param>\r\n            <returns>The type of the object the formatter creates a new instance of.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.SerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\">\r\n            <summary>\r\n            Resolves member mappings for a type, camel casing property names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IContractResolver\">\r\n            <summary>\r\n            Used by <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/> to resolves a <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for a given <see cref=\"T:System.Type\"/>.\r\n            </summary>\r\n            <example>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverObject\" title=\"IContractResolver Class\"/>\r\n              <code lang=\"cs\" source=\"..\\Src\\Newtonsoft.Json.Tests\\Documentation\\SerializationTests.cs\" region=\"ReducingSerializedJsonSizeContractResolverExample\" title=\"IContractResolver Example\"/>\r\n            </example>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.#ctor(System.Boolean)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> class.\r\n            </summary>\r\n            <param name=\"shareCache\">\r\n            If set to <c>true</c> the <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> will use a cached shared with other resolvers of the same type.\r\n            Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected\r\n            behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly\r\n            recommended to reuse <see cref=\"T:Newtonsoft.Json.Serialization.DefaultContractResolver\"/> instances with the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContract(System.Type)\">\r\n            <summary>\r\n            Resolves the contract for a given type.\r\n            </summary>\r\n            <param name=\"type\">The type to resolve a contract for.</param>\r\n            <returns>The contract for a given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetSerializableMembers(System.Type)\">\r\n            <summary>\r\n            Gets the serializable members for the type.\r\n            </summary>\r\n            <param name=\"objectType\">The type to get serializable members for.</param>\r\n            <returns>The serializable members for the type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateObjectContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)\">\r\n            <summary>\r\n            Creates the constructor parameters.\r\n            </summary>\r\n            <param name=\"constructor\">The constructor to create properties for.</param>\r\n            <param name=\"memberProperties\">The type's member properties.</param>\r\n            <returns>Properties for the given <see cref=\"T:System.Reflection.ConstructorInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.\r\n            </summary>\r\n            <param name=\"matchingMemberProperty\">The matching member property.</param>\r\n            <param name=\"parameterInfo\">The constructor parameter.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.ParameterInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolveContractConverter(System.Type)\">\r\n            <summary>\r\n            Resolves the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the contract.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>The contract's default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDictionaryContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreatePrimitiveContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateLinqContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateDynamicContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateStringContract(System.Type)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateContract(System.Type)\">\r\n            <summary>\r\n            Determines which contract type is created for the given type.\r\n            </summary>\r\n            <param name=\"objectType\">Type of the object.</param>\r\n            <returns>A <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/> for the given type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.\r\n            </summary>\r\n            <param name=\"type\">The type to create properties for.</param>\r\n            /// <param name=\"memberSerialization\">The member serialization mode for the type.</param>\r\n            <returns>Properties for the given <see cref=\"T:Newtonsoft.Json.Serialization.JsonContract\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateMemberValueProvider(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Creates the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> used by the serializer to get and set values from a member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)\">\r\n            <summary>\r\n            Creates a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.\r\n            </summary>\r\n            <param name=\"memberSerialization\">The member's parent <see cref=\"T:Newtonsoft.Json.MemberSerialization\"/>.</param>\r\n            <param name=\"member\">The member to create a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for.</param>\r\n            <returns>A created <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> for the given <see cref=\"T:System.Reflection.MemberInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultContractResolver.GetResolvedPropertyName(System.String)\">\r\n            <summary>\r\n            Gets the resolved name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>Name of the property.</returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.DynamicCodeGeneration\">\r\n            <summary>\r\n            Gets a value indicating whether members are being get and set using dynamic code generation.\r\n            This value is determined by the runtime permissions available.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if using dynamic code generation; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.DefaultContractResolver.SerializeCompilerGeneratedMembers\">\r\n            <summary>\r\n            Gets or sets a value indicating whether compiler generated members should be serialized.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if serialized compiler generated members; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver.ResolvePropertyName(System.String)\">\r\n            <summary>\r\n            Resolves the name of the property.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>The property name camel cased.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IReferenceResolver\">\r\n            <summary>\r\n            Used to resolve references when serializing and deserializing JSON by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.ResolveReference(System.Object,System.String)\">\r\n            <summary>\r\n            Resolves a reference to its object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference to resolve.</param>\r\n            <returns>The object that</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.GetReference(System.Object,System.Object)\">\r\n            <summary>\r\n            Gets the reference for the sepecified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to get a reference for.</param>\r\n            <returns>The reference to the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.IsReferenced(System.Object,System.Object)\">\r\n            <summary>\r\n            Determines whether the specified object is referenced.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"value\">The object to test for a reference.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified object is referenced; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IReferenceResolver.AddReference(System.Object,System.String,System.Object)\">\r\n            <summary>\r\n            Adds a reference to the specified object.\r\n            </summary>\r\n            <param name=\"context\">The serialization context.</param>\r\n            <param name=\"reference\">The reference.</param>\r\n            <param name=\"value\">The object to reference.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.DefaultSerializationBinder\">\r\n            <summary>\r\n            The default serialization binder used when resolving and loading classes from type names.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToType(System.String,System.String)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object.</param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object.</param>\r\n            <returns>\r\n            The type of the object the formatter creates a new instance of.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.DefaultSerializationBinder.BindToName(System.Type,System.String@,System.String@)\">\r\n            <summary>\r\n            When overridden in a derived class, controls the binding of a serialized object to a type.\r\n            </summary>\r\n            <param name=\"serializedType\">The type of the object the formatter creates a new instance of.</param>\r\n            <param name=\"assemblyName\">Specifies the <see cref=\"T:System.Reflection.Assembly\"/> name of the serialized object. </param>\r\n            <param name=\"typeName\">Specifies the <see cref=\"T:System.Type\"/> name of the serialized object. </param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorContext\">\r\n            <summary>\r\n            Provides information surrounding an error.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Error\">\r\n            <summary>\r\n            Gets or sets the error.\r\n            </summary>\r\n            <value>The error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.OriginalObject\">\r\n            <summary>\r\n            Gets the original object that caused the error.\r\n            </summary>\r\n            <value>The original object that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Member\">\r\n            <summary>\r\n            Gets the member that caused the error.\r\n            </summary>\r\n            <value>The member that caused the error.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Path\">\r\n            <summary>\r\n            Gets the path of the JSON location where the error occurred.\r\n            </summary>\r\n            <value>The path of the JSON location where the error occurred.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorContext.Handled\">\r\n            <summary>\r\n            Gets or sets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.ErrorContext\"/> is handled.\r\n            </summary>\r\n            <value><c>true</c> if handled; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\">\r\n            <summary>\r\n            Provides data for the Error event.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ErrorEventArgs.#ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ErrorEventArgs\"/> class.\r\n            </summary>\r\n            <param name=\"currentObject\">The current object.</param>\r\n            <param name=\"errorContext\">The error context.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.CurrentObject\">\r\n            <summary>\r\n            Gets the current object the error event is being raised against.\r\n            </summary>\r\n            <value>The current object the error event is being raised against.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ErrorEventArgs.ErrorContext\">\r\n            <summary>\r\n            Gets the error context.\r\n            </summary>\r\n            <value>The error context.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ITraceWriter\">\r\n            <summary>\r\n            Represents a trace writer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ITraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.ITraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.IValueProvider\">\r\n            <summary>\r\n            Provides methods to get and set values.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.IValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.UnderlyingType\">\r\n            <summary>\r\n            Gets the underlying type for the contract.\r\n            </summary>\r\n            <value>The underlying type for the contract.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.CreatedType\">\r\n            <summary>\r\n            Gets or sets the type created during deserialization.\r\n            </summary>\r\n            <value>The type created during deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.IsReference\">\r\n            <summary>\r\n            Gets or sets whether this type contract is serialized as a reference.\r\n            </summary>\r\n            <value>Whether this type contract is serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.Converter\">\r\n            <summary>\r\n            Gets or sets the default <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for this contract.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserialized\">\r\n            <summary>\r\n            Gets or sets the method called immediately after deserialization of the object.\r\n            </summary>\r\n            <value>The method called immediately after deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnDeserializing\">\r\n            <summary>\r\n            Gets or sets the method called during deserialization of the object.\r\n            </summary>\r\n            <value>The method called during deserialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerialized\">\r\n            <summary>\r\n            Gets or sets the method called after serialization of the object graph.\r\n            </summary>\r\n            <value>The method called after serialization of the object graph.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnSerializing\">\r\n            <summary>\r\n            Gets or sets the method called before serialization of the object.\r\n            </summary>\r\n            <value>The method called before serialization of the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreator\">\r\n            <summary>\r\n            Gets or sets the default creator method used to create the object.\r\n            </summary>\r\n            <value>The default creator method used to create the object.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.DefaultCreatorNonPublic\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the default creator is non public.\r\n            </summary>\r\n            <value><c>true</c> if the default object creator is non-public; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContract.OnError\">\r\n            <summary>\r\n            Gets or sets the method called when an error is thrown during the serialization of the object.\r\n            </summary>\r\n            <value>The method called when an error is thrown during the serialization of the object.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonContainerContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonContainerContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the default collection items <see cref=\"T:Newtonsoft.Json.JsonConverter\"/>.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets a value indicating whether the collection items preserve object references.\r\n            </summary>\r\n            <value><c>true</c> if collection items preserve object references; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the collection item reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonContainerContract.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the collection item type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonArrayContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonArrayContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.CollectionItemType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the collection items.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the collection items.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonArrayContract.IsMultidimensionalArray\">\r\n            <summary>\r\n            Gets a value indicating whether the collection type is a multidimensional array.\r\n            </summary>\r\n            <value><c>true</c> if the collection type is a multidimensional array; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDictionaryContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDictionaryContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryKeyType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary keys.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary keys.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDictionaryContract.DictionaryValueType\">\r\n            <summary>\r\n            Gets the <see cref=\"T:System.Type\"/> of the dictionary values.\r\n            </summary>\r\n            <value>The <see cref=\"T:System.Type\"/> of the dictionary values.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonDynamicContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonDynamicContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonDynamicContract.PropertyNameResolver\">\r\n            <summary>\r\n            Gets or sets the property name resolver.\r\n            </summary>\r\n            <value>The property name resolver.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonLinqContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonLinqContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonObjectContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonObjectContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.MemberSerialization\">\r\n            <summary>\r\n            Gets or sets the object member serialization.\r\n            </summary>\r\n            <value>The member object serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ItemRequired\">\r\n            <summary>\r\n            Gets or sets a value that indicates whether the object's properties are required.\r\n            </summary>\r\n            <value>\r\n            \tA value indicating whether the object's properties are required.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.Properties\">\r\n            <summary>\r\n            Gets the object's properties.\r\n            </summary>\r\n            <value>The object's properties.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ConstructorParameters\">\r\n            <summary>\r\n            Gets the constructor parameters required for any non-default constructor\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.OverrideConstructor\">\r\n            <summary>\r\n            Gets or sets the override constructor used to create the object.\r\n            This is set when a constructor is marked up using the\r\n            JsonConstructor attribute.\r\n            </summary>\r\n            <value>The override constructor.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonObjectContract.ParametrizedConstructor\">\r\n            <summary>\r\n            Gets or sets the parametrized constructor used to create the object.\r\n            </summary>\r\n            <value>The parametrized constructor.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPrimitiveContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPrimitiveContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonProperty\">\r\n            <summary>\r\n            Maps a JSON property to a .NET member or constructor parameter.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonProperty.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> that represents this instance.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> that represents this instance.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyName\">\r\n            <summary>\r\n            Gets or sets the name of the property.\r\n            </summary>\r\n            <value>The name of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DeclaringType\">\r\n            <summary>\r\n            Gets or sets the type that declared this property.\r\n            </summary>\r\n            <value>The type that declared this property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Order\">\r\n            <summary>\r\n            Gets or sets the order of serialization and deserialization of a member.\r\n            </summary>\r\n            <value>The numeric order of serialization or deserialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.UnderlyingName\">\r\n            <summary>\r\n            Gets or sets the name of the underlying member or parameter.\r\n            </summary>\r\n            <value>The name of the underlying member or parameter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ValueProvider\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.\r\n            </summary>\r\n            <value>The <see cref=\"T:Newtonsoft.Json.Serialization.IValueProvider\"/> that will get and set the <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> during serialization.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.PropertyType\">\r\n            <summary>\r\n            Gets or sets the type of the property.\r\n            </summary>\r\n            <value>The type of the property.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Converter\">\r\n            <summary>\r\n            Gets or sets the <see cref=\"T:Newtonsoft.Json.JsonConverter\"/> for the property.\r\n            If set this converter takes presidence over the contract converter for the property type.\r\n            </summary>\r\n            <value>The converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.MemberConverter\">\r\n            <summary>\r\n            Gets the member converter.\r\n            </summary>\r\n            <value>The member converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Ignored\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is ignored.\r\n            </summary>\r\n            <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Readable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is readable.\r\n            </summary>\r\n            <value><c>true</c> if readable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Writable\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is writable.\r\n            </summary>\r\n            <value><c>true</c> if writable; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.HasMemberAttribute\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> has a member attribute.\r\n            </summary>\r\n            <value><c>true</c> if has a member attribute; otherwise, <c>false</c>.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValue\">\r\n            <summary>\r\n            Gets the default value.\r\n            </summary>\r\n            <value>The default value.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.Required\">\r\n            <summary>\r\n            Gets a value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.\r\n            </summary>\r\n            <value>A value indicating whether this <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> is required.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.IsReference\">\r\n            <summary>\r\n            Gets a value indicating whether this property preserves object references.\r\n            </summary>\r\n            <value>\r\n            \t<c>true</c> if this instance is reference; otherwise, <c>false</c>.\r\n            </value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.NullValueHandling\">\r\n            <summary>\r\n            Gets the property null value handling.\r\n            </summary>\r\n            <value>The null value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.DefaultValueHandling\">\r\n            <summary>\r\n            Gets the property default value handling.\r\n            </summary>\r\n            <value>The default value handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ReferenceLoopHandling\">\r\n            <summary>\r\n            Gets the property reference loop handling.\r\n            </summary>\r\n            <value>The reference loop handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ObjectCreationHandling\">\r\n            <summary>\r\n            Gets the property object creation handling.\r\n            </summary>\r\n            <value>The object creation handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.TypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the type name handling.\r\n            </summary>\r\n            <value>The type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ShouldSerialize\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialize.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialize.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.GetIsSpecified\">\r\n            <summary>\r\n            Gets or sets a predicate used to determine whether the property should be serialized.\r\n            </summary>\r\n            <value>A predicate used to determine whether the property should be serialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.SetIsSpecified\">\r\n            <summary>\r\n            Gets or sets an action used to set whether the property has been deserialized.\r\n            </summary>\r\n            <value>An action used to set whether the property has been deserialized.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemConverter\">\r\n            <summary>\r\n            Gets or sets the converter used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items converter.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemIsReference\">\r\n            <summary>\r\n            Gets or sets whether this property's collection items are serialized as a reference.\r\n            </summary>\r\n            <value>Whether this property's collection items are serialized as a reference.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemTypeNameHandling\">\r\n            <summary>\r\n            Gets or sets the the type name handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items type name handling.</value>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.JsonProperty.ItemReferenceLoopHandling\">\r\n            <summary>\r\n            Gets or sets the the reference loop handling used when serializing the property's collection items.\r\n            </summary>\r\n            <value>The collection's items reference loop handling.</value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\">\r\n            <summary>\r\n            A collection of <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> objects.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonPropertyCollection\"/> class.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            When implemented in a derived class, extracts the key from the specified element.\r\n            </summary>\r\n            <param name=\"item\">The element from which to extract the key.</param>\r\n            <returns>The key for the specified element.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.AddProperty(Newtonsoft.Json.Serialization.JsonProperty)\">\r\n            <summary>\r\n            Adds a <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            </summary>\r\n            <param name=\"property\">The property to add to the collection.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty(System.String)\">\r\n            <summary>\r\n            Gets the closest matching <see cref=\"T:Newtonsoft.Json.Serialization.JsonProperty\"/> object.\r\n            First attempts to get an exact case match of propertyName and then\r\n            a case insensitive match.\r\n            </summary>\r\n            <param name=\"propertyName\">Name of the property.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(System.String,System.StringComparison)\">\r\n            <summary>\r\n            Gets a property by property name.\r\n            </summary>\r\n            <param name=\"propertyName\">The name of the property to get.</param>\r\n            <param name=\"comparisonType\">Type property name string comparison.</param>\r\n            <returns>A matching property if found.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.JsonStringContract\">\r\n            <summary>\r\n            Contract details for a <see cref=\"T:System.Type\"/> used by the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.JsonStringContract.#ctor(System.Type)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.JsonStringContract\"/> class.\r\n            </summary>\r\n            <param name=\"underlyingType\">The underlying type for the contract.</param>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ObjectConstructor`1\">\r\n            <summary>\r\n            Represents a method that constructs an object.\r\n            </summary>\r\n            <typeparam name=\"T\">The object type to create.</typeparam>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.OnErrorAttribute\">\r\n            <summary>\r\n            When applied to a method, specifies that the method is called when an error occurs serializing an object.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\">\r\n            <summary>\r\n            Get and set values for a <see cref=\"T:System.Reflection.MemberInfo\"/> using reflection.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.#ctor(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.ReflectionValueProvider\"/> class.\r\n            </summary>\r\n            <param name=\"memberInfo\">The member info.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.SetValue(System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to set the value on.</param>\r\n            <param name=\"value\">The value to set on the target.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.ReflectionValueProvider.GetValue(System.Object)\">\r\n            <summary>\r\n            Gets the value.\r\n            </summary>\r\n            <param name=\"target\">The target to get the value from.</param>\r\n            <returns>The value.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\">\r\n            <summary>\r\n            Represents a trace writer that writes to memory. When the trace message limit is\r\n            reached then old trace messages will be removed as new messages are added.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.#ctor\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:Newtonsoft.Json.Serialization.MemoryTraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.Trace(Newtonsoft.Json.TraceLevel,System.String,System.Exception)\">\r\n            <summary>\r\n            Writes the specified trace level, message and optional exception.\r\n            </summary>\r\n            <param name=\"level\">The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> at which to write this trace.</param>\r\n            <param name=\"message\">The trace message.</param>\r\n            <param name=\"ex\">The trace exception. This parameter is optional.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.GetTraceMessages\">\r\n            <summary>\r\n            Returns an enumeration of the most recent trace messages.\r\n            </summary>\r\n            <returns>An enumeration of the most recent trace messages.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Serialization.MemoryTraceWriter.ToString\">\r\n            <summary>\r\n            Returns a <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </summary>\r\n            <returns>\r\n            A <see cref=\"T:System.String\"/> of the most recent trace messages.\r\n            </returns>\r\n        </member>\r\n        <member name=\"P:Newtonsoft.Json.Serialization.MemoryTraceWriter.LevelFilter\">\r\n            <summary>\r\n            Gets the <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            For example a filter level of <code>Info</code> will exclude <code>Verbose</code> messages and include <code>Info</code>,\r\n            <code>Warning</code> and <code>Error</code> messages.\r\n            </summary>\r\n            <value>\r\n            The <see cref=\"T:Newtonsoft.Json.TraceLevel\"/> that will be used to filter the trace messages passed to the writer.\r\n            </value>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.StringEscapeHandling\">\r\n            <summary>\r\n            Specifies how strings are escaped when writing JSON text.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.Default\">\r\n            <summary>\r\n            Only control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeNonAscii\">\r\n            <summary>\r\n            All non-ASCII and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.StringEscapeHandling.EscapeHtml\">\r\n            <summary>\r\n            HTML (&lt;, &gt;, &amp;, &apos;, &quot;) and control characters (e.g. newline) are escaped.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TraceLevel\">\r\n            <summary>\r\n            Specifies what messages to output for the <see cref=\"T:Newtonsoft.Json.Serialization.ITraceWriter\"/> class.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Off\">\r\n            <summary>\r\n            Output no tracing and debugging messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Error\">\r\n            <summary>\r\n            Output error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Warning\">\r\n            <summary>\r\n            Output warnings and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Info\">\r\n            <summary>\r\n            Output informational messages, warnings, and error-handling messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TraceLevel.Verbose\">\r\n            <summary>\r\n            Output all debugging and tracing messages.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.TypeNameHandling\">\r\n            <summary>\r\n            Specifies type name handling options for the <see cref=\"T:Newtonsoft.Json.JsonSerializer\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.None\">\r\n            <summary>\r\n            Do not include the .NET type name when serializing types.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Objects\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON object structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Arrays\">\r\n            <summary>\r\n            Include the .NET type name when serializing into a JSON array structure.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.All\">\r\n            <summary>\r\n            Always include the .NET type name when serializing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.TypeNameHandling.Auto\">\r\n            <summary>\r\n            Include the .NET type name when the type of the object being serialized is not the same as its declared type.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IsNullOrEmpty``1(System.Collections.Generic.ICollection{``0})\">\r\n            <summary>\r\n            Determines whether the collection is null or empty.\r\n            </summary>\r\n            <param name=\"collection\">The collection.</param>\r\n            <returns>\r\n            \t<c>true</c> if the collection is null or empty; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.AddRange``1(System.Collections.Generic.IList{``0},System.Collections.Generic.IEnumerable{``0})\">\r\n            <summary>\r\n            Adds the elements of the specified collection to the specified generic IList.\r\n            </summary>\r\n            <param name=\"initial\">The list to add to.</param>\r\n            <param name=\"collection\">The collection of elements to add.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.CollectionUtils.IndexOf``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})\">\r\n            <summary>\r\n            Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.\r\n            </summary>\r\n            <typeparam name=\"TSource\">The type of the elements of source.</typeparam>\r\n            <param name=\"list\">A sequence in which to locate a value.</param>\r\n            <param name=\"value\">The object to locate in the sequence</param>\r\n            <param name=\"comparer\">An equality comparer to compare values.</param>\r\n            <returns>The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.Convert(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <returns>The converted type.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object@)\">\r\n            <summary>\r\n            Converts the value to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert the value to.</param>\r\n            <param name=\"convertedValue\">The converted value if the conversion was successful or the default value of <c>T</c> if it failed.</param>\r\n            <returns>\r\n            \t<c>true</c> if <c>initialValue</c> was converted successfully; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ConvertUtils.ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)\">\r\n            <summary>\r\n            Converts the value to the specified type. If the value is unable to be converted, the\r\n            value is checked whether it assignable to the specified type.\r\n            </summary>\r\n            <param name=\"initialValue\">The value to convert.</param>\r\n            <param name=\"culture\">The culture to use when converting.</param>\r\n            <param name=\"targetType\">The type to convert or cast the value to.</param>\r\n            <returns>\r\n            The converted type. If conversion was unsuccessful, the initial value\r\n            is returned if assignable to the target type.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodWithResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback,Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic that returns a result\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodReturnLast(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.CallMethodNoResult(System.String,System.Dynamic.DynamicMetaObjectBinder,System.Linq.Expressions.Expression[],Newtonsoft.Json.Utilities.DynamicProxyMetaObject{`0}.Fallback)\">\r\n            <summary>\r\n            Helper method for generating a MetaObject which calls a\r\n            specific method on Dynamic, but uses one of the arguments for\r\n            the result.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.DynamicProxyMetaObject`1.GetRestrictions\">\r\n            <summary>\r\n            Returns a Restrictions object which includes our current restrictions merged\r\n            with a restriction limiting our type\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.EnumUtils.GetNamesAndValues``1(System.Type)\">\r\n            <summary>\r\n            Gets a dictionary of the names and values of an Enum type.\r\n            </summary>\r\n            <param name=\"enumType\">The enum type to get names and values for.</param>\r\n            <returns></returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetCollectionItemType(System.Type)\">\r\n            <summary>\r\n            Gets the type of the typed collection's items.\r\n            </summary>\r\n            <param name=\"type\">The type.</param>\r\n            <returns>The type of the typed collection's items.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberUnderlyingType(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Gets the member's underlying type.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>The underlying type of the member.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.MemberInfo)\">\r\n            <summary>\r\n            Determines whether the member is an indexed property.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <returns>\r\n            \t<c>true</c> if the member is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.IsIndexedProperty(System.Reflection.PropertyInfo)\">\r\n            <summary>\r\n            Determines whether the property is an indexed property.\r\n            </summary>\r\n            <param name=\"property\">The property.</param>\r\n            <returns>\r\n            \t<c>true</c> if the property is an indexed property; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.GetMemberValue(System.Reflection.MemberInfo,System.Object)\">\r\n            <summary>\r\n            Gets the member's value on the object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target object.</param>\r\n            <returns>The member's value on the object.</returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)\">\r\n            <summary>\r\n            Sets the member's value on the target object.\r\n            </summary>\r\n            <param name=\"member\">The member.</param>\r\n            <param name=\"target\">The target.</param>\r\n            <param name=\"value\">The value.</param>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be read.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be read.</param>\r\n            /// <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be gotten non-publicly.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be read; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.ReflectionUtils.CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)\">\r\n            <summary>\r\n            Determines whether the specified MemberInfo can be set.\r\n            </summary>\r\n            <param name=\"member\">The MemberInfo to determine whether can be set.</param>\r\n            <param name=\"nonPublic\">if set to <c>true</c> then allow the member to be set non-publicly.</param>\r\n            <param name=\"canSetReadOnly\">if set to <c>true</c> then allow the member to be set if read-only.</param>\r\n            <returns>\r\n            \t<c>true</c> if the specified MemberInfo can be set; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.Utilities.StringBuffer\">\r\n            <summary>\r\n            Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.IsWhiteSpace(System.String)\">\r\n            <summary>\r\n            Determines whether the string is all white space. Empty string will return false.\r\n            </summary>\r\n            <param name=\"s\">The string to test whether it is all white space.</param>\r\n            <returns>\r\n            \t<c>true</c> if the string is all white space; otherwise, <c>false</c>.\r\n            </returns>\r\n        </member>\r\n        <member name=\"M:Newtonsoft.Json.Utilities.StringUtils.NullEmptyString(System.String)\">\r\n            <summary>\r\n            Nulls an empty string.\r\n            </summary>\r\n            <param name=\"s\">The string.</param>\r\n            <returns>Null if the string was null, otherwise the string unchanged.</returns>\r\n        </member>\r\n        <member name=\"T:Newtonsoft.Json.WriteState\">\r\n            <summary>\r\n            Specifies the state of the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Error\">\r\n            <summary>\r\n            An exception has been thrown, which has left the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in an invalid state.\r\n            You may call the <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method to put the <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> in the <c>Closed</c> state.\r\n            Any other <see cref=\"T:Newtonsoft.Json.JsonWriter\"/> method calls results in an <see cref=\"T:System.InvalidOperationException\"/> being thrown. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Closed\">\r\n            <summary>\r\n            The <see cref=\"M:Newtonsoft.Json.JsonWriter.Close\"/> method has been called. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Object\">\r\n            <summary>\r\n            An object is being written. \r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Array\">\r\n            <summary>\r\n            A array is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Constructor\">\r\n            <summary>\r\n            A constructor is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Property\">\r\n            <summary>\r\n            A property is being written.\r\n            </summary>\r\n        </member>\r\n        <member name=\"F:Newtonsoft.Json.WriteState.Start\">\r\n            <summary>\r\n            A write method has not been called.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/README.markdown",
    "content": "﻿Welcome to the psake project.\n=============================\n\n[![Join the chat at https://gitter.im/psake/psake](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/psake/psake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\npsake is a build automation tool written in PowerShell. It avoids the angle-bracket tax associated with executable XML by leveraging the PowerShell syntax in your build scripts. \npsake has a syntax inspired by rake (aka make in Ruby) and bake (aka make in Boo), but is easier to script because it leverages your existing command-line knowledge.\n\npsake is pronounced sake – as in Japanese rice wine. It does NOT rhyme with make, bake, or rake.\n\n## How to get started:\n\n**Step 1:** Download and extract the project\n\nYou will need to \"unblock\" the zip file before extracting - PowerShell by default does not run files downloaded from the internet.\nJust right-click the zip and click on \"properties\" and click on the \"unblock\" button.\n\n**Step 2:** CD into the directory where you extracted the project (where the psake.psm1 file is)\n\n> Import-Module .\\psake.psm1\n\nIf you encounter the following error \"Import-Module : ...psake.psm1 cannot be loaded because the execution of scripts is disabled on this system.\" Please see \"get-help about_signing\" for more details.\n\n1. Run PowerShell as administrator\n2. Set-ExecutionPolicy RemoteSigned\n\n> Get-Help Invoke-psake -Full   \n> - this will show you help and examples of how to use psake\n\t\n**Step 3:** Run some examples\n\n> CD .\\examples\n>\n> Invoke-psake    \t\t\t\t\t\n> - This will execute the \"default\" task in the \"default.ps1\"\n>\n> Invoke-psake .\\default.ps1 Clean  \n> - will execute the single task in the default.ps1 script\n\n## How To Contribute, Collaborate, Communicate\n\nIf you'd like to get involved with psake, we have discussion groups over at google: **[psake-dev](http://groups.google.com/group/psake-dev)** **[psake-users](http://groups.google.com/group/psake-users)**\n\nAnyone can fork the main repository and submit patches, as well. And lastly, the [wiki](http://wiki.github.com/psake/psake/) and [issues list](http://github.com/psake/psake/issues) are also open for additions, edits, and discussion.\n\nAlso check out the **[psake-contrib](http://github.com/psake/psake-contrib)** project for scripts, modules and functions to help you with a build.\n\n## License\n\npsake is released under the [MIT license](http://www.opensource.org/licenses/MIT).\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/chocolateyInstall.ps1",
    "content": "$nugetPath = $env:ChocolateyInstall\n$nugetExePath = Join-Path $nuGetPath 'bin'\n$packageBatchFileName = Join-Path $nugetExePath \"psake.bat\"\n\n$psakeDir = (Split-Path -parent $MyInvocation.MyCommand.Definition)\n#$path = ($psakeDir | Split-Path | Join-Path -ChildPath  'psake.cmd')\n$path = Join-Path $psakeDir  'psake.cmd'\nWrite-Host \"Adding $packageBatchFileName and pointing to $path\"\n\"@echo off\n\"\"$path\"\" %*\" | Out-File $packageBatchFileName -encoding ASCII \n\nWrite-Host \"PSake is now ready. You can type 'psake' from any command line at any path. Get started by typing 'psake /?'\"\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/en-US/psake.psm1-help.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<helpItems schema=\"maml\">\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Invoke-psake</command:name>\n      <maml:description>\n        <maml:para>Runs a psake build script.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb>Invoke</command:verb>\n      <command:noun>psake</command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This function runs a psake build script</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Invoke-psake</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>buildFile</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>taskList</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>framework</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>docs</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>parameters</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">Hashtable</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>properties</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">Hashtable</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>nologo</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>notr</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        </command:parameter>\n      </command:syntaxItem>\n    </command:syntax>\n    <command:parameters>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>buildFile</maml:name>\n        <maml:description>\n          <maml:para>The path to the psake build script to execute</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue>'default.ps1'</dev:defaultValue>\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"1\">\n        <maml:name>taskList</maml:name>\n        <maml:description>\n          <maml:para>A comma-separated list of task names to execute</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n        <dev:type>\n          <maml:name>String[]</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"2\">\n        <maml:name>framework</maml:name>\n       <maml:description>\n            <maml:para>The version of the .NET framework you want to use during build. You can append x86 or x64 to force a specific framework. If not specified, x86 or x64 will be detected based on the bitness of the PowerShell process.\nPossible values: '1.0', '1.1', '2.0', '2.0x86', '2.0x64', '3.0', '3.0x86', '3.0x64', '3.5', '3.5x86', '3.5x64', '4.0', '4.0x86', '4.0x64', '4.5', '4.5x86', '4.5x64', '4.5.1', '4.5.1x86', '4.5.1x64'</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue>'3.5'</dev:defaultValue>\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"3\">\n        <maml:name>docs</maml:name>\n        <maml:description>\n            <maml:para>Prints a list of tasks and their descriptions</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        <dev:type>\n          <maml:name>SwitchParameter</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"4\">\n        <maml:name>parameters</maml:name>\n         <maml:description>\n            <maml:para>A hashtable containing parameters to be passed into the current build script.  These parameters will be processed before the 'Properties' function of the script is processed.  This means you can access parameters from within the 'Properties' function!\n</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">Hashtable</command:parameterValue>\n        <dev:type>\n          <maml:name>Hashtable</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"5\">\n        <maml:name>properties</maml:name>\n         <maml:description>\n            <maml:para>A hashtable containing properties to be passed into the current build script.  These properties will override matching properties that are found in the 'Properties' function of the script.</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">Hashtable</command:parameterValue>\n        <dev:type>\n          <maml:name>Hashtable</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"6\">\n        <maml:name>nologo</maml:name>\n         <maml:description>\n            <maml:para>Do not display the startup banner and copyright message.</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        <dev:type>\n          <maml:name>SwitchParameter</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n      <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"6\">\n        <maml:name>notr</maml:name>\n         <maml:description>\n            <maml:para>Do not display the time report.</maml:para>\n          </maml:description>\n        <command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n        <dev:type>\n          <maml:name>SwitchParameter</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue />\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n      <maml:alert>\n\t  <maml:para>---- Exceptions ----</maml:para>\n\t  <maml:para>If there is an exception thrown during the running of a build script psake will set the '$psake.build_success' variable to $false. To detect failue outside PowerShell (for example by build server), finish PowerShell process with non-zero exit code when '$psake.build_success' is $false. Calling psake from 'cmd.exe' with 'psake.cmd' will give you that behaviour.</maml:para>\n\t  <maml:para></maml:para>\n\t  </maml:alert>\n\t  <maml:alert>\n\t\t<maml:para>---- $psake variable ----</maml:para>\n        <maml:para>When the psake module is loaded a variable called $psake is created which is a hashtable\ncontaining some variables:\n\n$psake.version                      # contains the current version of psake\n$psake.context                      # holds onto the current state of all variables\n$psake.run_by_psake_build_tester    # indicates that build is being run by psake-BuildTester\n$psake.config_default               # contains default configuration\n                                    # can be overriden in psake-config.ps1 in directory with psake.psm1 or in directory with current build script\n$psake.build_success                # indicates that the current build was successful\n$psake.build_script_file            # contains a System.IO.FileInfo for the current build script\n$psake.build_script_dir             # contains the fully qualified path to the current build script\n\nYou should see the following when you display the contents of the $psake variable right after importing psake\n\nPS projects:\\psake> Import-Module .\\psake.psm1\nPS projects:\\psake> $psake\n\nName                           Value\n----                           -----\nrun_by_psake_build_tester      False\nversion                        4.2\nbuild_success                  False\nbuild_script_file\nbuild_script_dir\nconfig_default                 @{framework=3.5; ...\ncontext                        {}\n\nAfter a build is executed the following $psake values are updated: build_script_file, build_script_dir, build_success\n\nPS projects:\\psake> Invoke-psake .\\examples\\default.ps1\nExecuting task: Clean\nExecuted Clean!\nExecuting task: Compile\nExecuted Compile!\nExecuting task: Test\nExecuted Test!\n\nBuild Succeeded!\n\n----------------------------------------------------------------------\nBuild Time Report\n----------------------------------------------------------------------\nName    Duration\n----    --------\nClean   00:00:00.0798486\nCompile 00:00:00.0869948\nTest    00:00:00.0958225\nTotal:  00:00:00.2712414\n\nPS projects:\\psake> $psake\n\nName                           Value\n----                           -----\nbuild_script_file              YOUR_PATH\\examples\\default.ps1\nrun_by_psake_build_tester      False\nbuild_script_dir               YOUR_PATH\\examples\ncontext                        {}\nversion                        4.2\nbuild_success                  True\nconfig_default                 @{framework=3.5; ...\n\n</maml:para>\n\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>Runs the 'default' task in the '.build.ps1' build script</maml:para>\n          <maml:para />\n          <maml:para />\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t  <command:example>\n        <maml:title>--------------  EXAMPLE 2 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake '.\\build.ps1' Tests,Package</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>Runs the 'Tests' and 'Package' tasks in the '.build.ps1' build script</maml:para>\n          <maml:para />\n          <maml:para />\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t  <command:example>\n        <maml:title>--------------  EXAMPLE 3 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake Tests</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>This example will run the 'Tests' tasks in the 'default.ps1' build script.  The 'default.ps1' is assumed to be in the current directory.</maml:para>\n          <maml:para />\n          <maml:para />\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t  <command:example>\n        <maml:title>--------------  EXAMPLE 4 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake 'Tests, Package'</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>This example will run the 'Tests' and 'Package' tasks in the 'default.ps1' build script. The 'default.ps1' is assumed to be in the current directory.</maml:para>\n          <maml:para>NOTE: The quotes around the list of tasks to execute is required if you want to execute more than 1 task.</maml:para>\n          <maml:para />\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t   <command:example>\n        <maml:title>--------------  EXAMPLE 5 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake .\\build.ps1 -docs</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>Prints a report of all the tasks and their dependencies and descriptions and then exits</maml:para>\n          <maml:para />\n          <maml:para />\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t   <command:example>\n        <maml:title>--------------  EXAMPLE 6 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake .\\parameters.ps1 -parameters @{\"p1\"=\"v1\";\"p2\"=\"v2\"}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>Runs the build script called 'parameters.ps1' and passes in parameters 'p1' and 'p2' with values 'v1' and 'v2'</maml:para>\n          <maml:para>Here's the .\\parameters.ps1 build script:</maml:para>\n\t\t  <maml:para />\n\t\t  <maml:para>\n\t\t  properties {\n  $my_property = $p1 + $p2\n}\n\ntask default -depends TestParams\n\ntask TestParams {\n  Assert ($my_property -ne $null) '$my_property should not be null'\n}</maml:para>\n          <maml:para />\n\t\t  <maml:para>Notice how you can refer to the parameters that were passed into the script from within the “properties” function. The value of the $p1 variable should be the string “v1” and the value of the $p2 variable should be “v2”.</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t  <command:example>\n        <maml:title>--------------  EXAMPLE 7 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-psake .\\properties.ps1 -properties @{\"x\"=\"1\";\"y\"=\"2\"}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>Runs the build script called 'properties.ps1' and passes in parameters 'x' and 'y' with values '1' and '2'</maml:para>\n\t\t  <maml:para>This feature allows you to over-ride existing properties in your build script.</maml:para>\n          <maml:para />\n\t\t  <maml:para>Here's the .\\properties.ps1 build script</maml:para>\n          <maml:para>properties {\n\t$x = $null\n\t$y = $null\n\t$z = $null\n}\n\ntask default -depends TestProperties\n\ntask TestProperties {\n  Assert ($x -ne $null) \"x should not be null\"\n  Assert ($y -ne $null) \"y should not be null\"\n  Assert ($z -eq $null) \"z should be null\"\n}\n</maml:para>\n\t\t<maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>TaskTearDown</command:name>\n      <maml:description>\n        <maml:para>Adds a scriptblock to the build that will be executed after each task</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This function will accept a scriptblock that will be executed after each\ntask in the build script.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>TaskTearDown</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>teardown</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>teardown</maml:name>\n        <maml:description>\n          <maml:para>A scriptblock to execute</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        <dev:type>\n          <maml:name>ScriptBlock</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script is shown below:\n\nTask default -depends Test\n\nTask Test -depends Compile, Clean {\n}\n\nTask Compile -depends Clean {\n}\n\nTask Clean {\n}\n\nTaskTearDown {\n  \"Running 'TaskTearDown' for task $context.Peek().currentTaskName\"\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The script above produces the following output:</maml:para>\n          <maml:para>Executing task, Clean...\nRunning 'TaskTearDown' for task Clean\nExecuting task, Compile...\nRunning 'TaskTearDown' for task Compile\nExecuting task, Test...\nRunning 'TaskTearDown' for task Test\n\nBuild Succeeded</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>TaskSetup</command:name>\n      <maml:description>\n        <maml:para>Adds a scriptblock that will be executed before each task</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This function will accept a scriptblock that will be executed before each\ntask in the build script.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>TaskSetup</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>setup</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>setup</maml:name>\n        <maml:description>\n          <maml:para>A scriptblock to execute</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        <dev:type>\n          <maml:name>ScriptBlock</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script is shown below:\n\nTask default -depends Test\n\nTask Test -depends Compile, Clean {\n}\n\nTask Compile -depends Clean {\n}\n\nTask Clean {\n}\n\nTaskSetup {\n  \"Running 'TaskSetup' for task $context.Peek().currentTaskName\"\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The script above produces the following output:</maml:para>\n          <maml:para>Running 'TaskSetup' for task Clean\nExecuting task, Clean...\nRunning 'TaskSetup' for task Compile\nExecuting task, Compile...\nRunning 'TaskSetup' for task Test\nExecuting task, Test...\n\nBuild Succeeded</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Framework</command:name>\n      <maml:description>\n        <maml:para>Sets the version of the .NET framework you want to use during build.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This function will accept a string containing version of the .NET framework to use during build. Possible values: '1.0', '1.1', '2.0', '2.0x86', '2.0x64', '3.0', '3.0x86', '3.0x64', '3.5', '3.5x86', '3.5x64', '4.0', '4.0x86', '4.0x64', '4.5', '4.5x86', '4.5x64', '4.5.1', '4.5.1x86', '4.5.1x64'. Default is '3.5*', where x86 or x64 will be detected based on the bitness of the PowerShell process.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Framework</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>framework</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">string</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>framework</maml:name>\n        <maml:description>\n          <maml:para>Version of the .NET framework to use during build.</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">string</command:parameterValue>\n        <dev:type>\n          <maml:name>string</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n\t<maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n\t<command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <dev:code>\nFramework \"4.0\"\n\nTask default -depends Compile\n\nTask Compile -depends Clean {\n  msbuild /version\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The script above will output detailed version of msbuid v4</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n    </command:examples>\n\t<maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>FormatTaskName</command:name>\n      <maml:description>\n        <maml:para>This function allows you to change how psake renders the task name during a build.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This function takes either a string which represents a format string (formats using the -f format operator see “help about_operators”) or it can accept a script block that has a single parameter that is the name of the task that will be executed.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>FormatTaskName</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>format</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String or ScriptBlock</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>format</maml:name>\n        <maml:description>\n          <maml:para>A format string or a scriptblock to execute</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">String or ScriptBlock</command:parameterValue>\n        <dev:type>\n          <maml:name>String or ScriptBlock</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script that uses a format string is shown below:\n\nTask default -depends TaskA, TaskB, TaskC\n\nFormatTaskName \"-------- {0} --------\"\n\nTask TaskA {\n  \"TaskA is executing\"\n}\n\nTask TaskB {\n  \"TaskB is executing\"\n}\n\nTask TaskC {\n  \"TaskC is executing\"\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The script above produces the following output:</maml:para>\n          <maml:para>-------- TaskA --------\nTaskA is executing\n-------- TaskB --------\nTaskB is executing\n-------- TaskC --------\nTaskC is executing\n\nBuild Succeeded!</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t   <command:example>\n        <maml:title>--------------  EXAMPLE 2 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script that uses a ScriptBlock is shown below:\n\nTask default -depends TaskA, TaskB, TaskC\n\nFormatTaskName {\n   param($taskName)\n   write-host \"Executing Task: $taskName\" -foregroundcolor blue\n}\n\nTask TaskA {\n  \"TaskA is executing\"\n}\n\nTask TaskB {\n  \"TaskB is executing\"\n}\n\nTask TaskC {\n  \"TaskC is executing\"\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The preceding example uses the scriptblock parameter to the FormatTaskName function to render each task name in the color blue.</maml:para>\n          <maml:para>Note: the $taskName parameter is arbitrary it could be named anything</maml:para>\n          <maml:para />\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\" xmlns:MSHelp=\"http://msdn.microsoft.com/mshelp\">\n  <!--Generated by PS Cmdlet Help Editor-->\n\t  <command:details>\n\t\t  <command:name>Get-PSakeScriptTasks</command:name>\n\t\t  <maml:description>\n\t\t\t  <maml:para>Returns meta data about all the tasks defined in the provided psake script.</maml:para>\n\t\t  </maml:description>\n\t\t  <maml:copyright>\n\t\t\t  <maml:para />\n\t\t  </maml:copyright>\n\t\t  <command:verb>Get</command:verb>\n\t\t  <command:noun>PSakeScriptTasks</command:noun>\n\t\t  <dev:version />\n\t  </command:details>\n\t  <maml:description>\n\t\t  <maml:para>Returns meta data about all the tasks defined in the provided psake script. </maml:para>\n\t  </maml:description>\n\t  <command:syntax>\n\t\t  <command:syntaxItem>\n\t\t\t  <maml:name>Get-PSakeScriptTasks</maml:name>\n\t\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"0\">\n\t\t\t\t  <maml:name>buildFile</maml:name>\n\t\t\t\t  <maml:description>\n\t\t\t\t\t  <maml:para>The path to the psake build script to read the tasks from.</maml:para>\n\t\t\t\t  </maml:description>\n\t\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t  </command:parameter>\n\t\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"named\">\n\t\t\t\t  <maml:name>InformationAction</maml:name>\n\t\t\t\t  <maml:description>\n\t\t\t\t\t  <maml:para />\n\t\t\t\t  </maml:description>\n\t\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">ActionPreference</command:parameterValue>\n\t\t\t  </command:parameter>\n\t\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"named\">\n\t\t\t\t  <maml:name>InformationVariable</maml:name>\n\t\t\t\t  <maml:description>\n\t\t\t\t\t  <maml:para />\n\t\t\t\t  </maml:description>\n\t\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t  </command:parameter>\n\t\t  </command:syntaxItem>\n\t  </command:syntax>\n\t  <command:parameters>\n\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"0\">\n\t\t\t  <maml:name>buildFile</maml:name>\n\t\t\t  <maml:description>\n\t\t\t\t  <maml:para>The path to the psake build script to read the tasks from.</maml:para>\n\t\t\t  </maml:description>\n\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t  <dev:type>\n\t\t\t\t  <maml:name>String</maml:name>\n\t\t\t\t  <maml:uri/>\n\t\t\t  </dev:type>\n\t\t\t  <dev:defaultValue>&apos;default.ps1&apos;</dev:defaultValue>\n\t\t  </command:parameter>\n\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"named\">\n\t\t\t  <maml:name>InformationAction</maml:name>\n\t\t\t  <maml:description>\n\t\t\t\t  <maml:para />\n\t\t\t  </maml:description>\n\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">ActionPreference</command:parameterValue>\n\t\t\t  <dev:type>\n\t\t\t\t  <maml:name>ActionPreference</maml:name>\n\t\t\t\t  <maml:uri/>\n\t\t\t  </dev:type>\n\t\t\t  <dev:defaultValue></dev:defaultValue>\n\t\t  </command:parameter>\n\t\t  <command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" position=\"named\">\n\t\t\t  <maml:name>InformationVariable</maml:name>\n\t\t\t  <maml:description>\n\t\t\t\t  <maml:para />\n\t\t\t  </maml:description>\n\t\t\t  <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t  <dev:type>\n\t\t\t\t  <maml:name>String</maml:name>\n\t\t\t\t  <maml:uri/>\n\t\t\t  </dev:type>\n\t\t\t  <dev:defaultValue></dev:defaultValue>\n\t\t  </command:parameter>\n\t  </command:parameters>\n\t  <command:inputTypes>\n\t\t  <command:inputType>\n\t\t\t  <dev:type>\n\t\t\t\t  <maml:name></maml:name>\n\t\t\t\t  <maml:uri></maml:uri>\n\t\t\t\t  <maml:description/>\n\t\t\t  </dev:type>\n\t\t\t  <maml:description>\n  <maml:para />\n\t\t\t  </maml:description>\n\t\t  </command:inputType>\n\t  </command:inputTypes>\n\t  <command:returnValues>\n\t\t  <command:returnValue>\n\t\t\t  <dev:type>\n\t\t\t\t  <maml:name></maml:name>\n\t\t\t\t  <maml:uri></maml:uri>\n\t\t\t\t  <maml:description/>\n\t\t\t  </dev:type>\n\t\t\t  <maml:description>\n  <maml:para />\n\t\t\t  </maml:description>\n\t\t  </command:returnValue>\n\t  </command:returnValues>\n\t  <command:terminatingErrors></command:terminatingErrors>\n\t  <command:nonTerminatingErrors></command:nonTerminatingErrors>\n\t  <maml:alertSet>\n\t\t  <maml:title></maml:title>\n\t\t  <maml:alert>\n\t\t\t  <maml:para />\n\t\t  </maml:alert>\n\t  </maml:alertSet>\n\t  <command:examples>\n\t  </command:examples>\n\t  <maml:relatedLinks>\n\t  </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Include</command:name>\n      <maml:description>\n        <maml:para>Include the functions or code of another powershell script file into the current build script's scope</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>A build script may declare an \"includes\" function which allows you to define a file containing powershell code to be included and added to the scope of the currently running build script. Code from such file will be executed after code from build script.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Include</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>fileNamePathToInclude</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>fileNamePathToInclude</maml:name>\n        <maml:description>\n          <maml:para>A string containing the path and name of the powershell file to include</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script is shown below:\n\nInclude \".\\build_utils.ps1\"\n\nTask default -depends Test\n\nTask Test -depends Compile, Clean {\n}\n\nTask Compile -depends Clean {\n}\n\nTask Clean {\n}</dev:code>\n        <dev:remarks>\n          <maml:para>Description</maml:para>\n          <maml:para>-----------</maml:para>\n          <maml:para>The script above includes all the functions and variables defined in the \".\\build_utils.ps1\" script into the current build script's scope</maml:para>\n          <maml:para>Note: You can have more than 1 \"Include\" function defined in the build script</maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Properties</command:name>\n      <maml:description>\n        <maml:para>Define a scriptblock that contains assignments to variables that will be available to all tasks in the build script</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>A build script may declare a \"Properies\" function which allows you to define variables that will be available to all the \"Task\" functions in the build script. </maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Properties</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>properties</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>properties</maml:name>\n        <maml:description>\n          <maml:para>The script block containing all the variable assignment statements</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        <dev:type>\n          <maml:name>ScriptBlock</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script is shown below:\n\nProperties {\n  $build_dir = \"c:\\build\"\n  $connection_string = \"datasource=localhost;initial catalog=northwind;integrated security=sspi\"\n}\n\nTask default -depends Test\n\nTask Test -depends Compile, Clean {\n}\n\nTask Compile -depends Clean {\n}\n\nTask Clean {\n}</dev:code>\n        <dev:remarks>\n\t\t\t<maml:para>Description</maml:para>\n\t\t\t<maml:para>-----------</maml:para>\n\t\t\t<maml:para>Note: You can have more than 1 \"Properties\" function defined in the build script</maml:para>\n\t\t\t<maml:para></maml:para>\n\t\t\t<maml:para></maml:para>\n\t\t\t<maml:para></maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Task</command:name>\n      <maml:description>\n        <maml:para>Defines a build task to be executed by psake</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n\t<maml:description>\n      <maml:para>This function creates a 'task' object that will be used by the psake engine to execute a build task. Note: There must be at least one task called 'default' in the build script</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Task</command:name>\n        <command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Name</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Action</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>PreAction</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>PostAction</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Precondition</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Postcondition</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>ContinueOnError</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">Boolean</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Depends</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>RequiredVariables</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n        </command:parameter>\n\t\t<command:parameter require=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>Description</maml:name>\n          <command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t<command:parameters>\n\t\t<command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Name</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>The name of the task</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>String</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Action</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A scriptblock containing the statements to execute for the task.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>ScriptBlock</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>PreAction</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A scriptblock to be executed before the 'Action' scriptblock.  Note: This parameter is ignored if the 'Action' scriptblock is not defined.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>ScriptBlock</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>PostAction</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A scriptblock to be executed after the 'Action' scriptblock.  Note: This parameter is ignored if the 'Action' scriptblock is not defined.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>ScriptBlock</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Precondition</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A scriptblock that is executed to determine if the task is executed or skipped. This scriptblock should return $true or $false</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>ScriptBlock</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Postcondition</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A scriptblock that is executed to determine if the task completed its job correctly.  An exception is thrown if the scriptblock returns $false.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>ScriptBlock</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>ContinueOnError</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>If this switch parameter is set then the task will not cause the build to fail when an exception is thrown by the task</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">SwitchParameter</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>SwitchParameter</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Depends</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>An array of task names that this task depends on.  These tasks will be executed before the current task is executed.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>String[]</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>RequiredVariables</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>An array of names of variables that must be set to run this task.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">String[]</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>String[]</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t\t<command:parameter required=\"false\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n\t\t\t<maml:name>Description</maml:name>\n\t\t\t<maml:description>\n\t\t\t  <maml:para>A description of the task.</maml:para>\n\t\t\t</maml:description>\n\t\t\t<command:parameterValue required=\"false\" variableLength=\"false\">String</command:parameterValue>\n\t\t\t<dev:type>\n\t\t\t  <maml:name>String</maml:name>\n\t\t\t  <maml:uri />\n\t\t\t</dev:type>\n\t\t\t<dev:defaultValue></dev:defaultValue>\n\t\t</command:parameter>\n\t</command:parameters>\n\t <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>A sample build script is shown below:\n\nTask default -Depends Test\n\nTask Test -Depends Compile, Clean {\n  \"This is a test\"\n}\n\nTask Compile -Depends Clean {\n  \"Compile\"\n}\n\nTask Clean {\n  \"Clean\"\n}\n\nThe 'default' task is required and should not contain an 'Action' parameter.\nIt uses the 'Depends' parameter to specify that 'Test' is a dependency\n\nThe 'Test' task uses the 'Depends' parameter to specify that 'Compile' and 'Clean' are dependencies\nThe 'Compile' task depends on the 'Clean' task.\n\nNote:\nThe 'Action' parameter is defaulted to the script block following the 'Clean' task.\n\nAn equivalent 'Test' task is shown below:\n\nTask Test -Depends Compile, Clean -Action {\n  $testMessage\n}\n\nThe output for the above sample build script is shown below:\nExecuting task, Clean...\nClean\nExecuting task, Compile...\nCompile\nExecuting task, Test...\nThis is a test\n\nBuild Succeeded!\n\n----------------------------------------------------------------------\nBuild Time Report\n----------------------------------------------------------------------\nName    Duration\n----    --------\nClean   00:00:00.0065614\nCompile 00:00:00.0133268\nTest    00:00:00.0225964\nTotal:  00:00:00.0782496</dev:code>\n        <dev:remarks>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Properties</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Assert</command:name>\n      <maml:description>\n        <maml:para>Helper function for \"Design by Contract\" assertion checking.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This is a helper function that makes the code less noisy by eliminating many of the \"if\" statements that are normally required to verify assumptions in the code.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Assert</command:name>\n        <command:parameter require=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>conditionToCheck</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">Boolean</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false\" postion=\"1\">\n          <maml:name>failureMessage</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>conditionToCheck</maml:name>\n        <maml:description>\n          <maml:para>The boolean condition to evaluate</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"true\">Boolean</command:parameterValue>\n        <dev:type>\n          <maml:name>Boolean</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n\t  <command:parameter required=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"1\">\n        <maml:name>failureMessage</maml:name>\n        <maml:description>\n          <maml:para>The error message used for the exception if the conditionToCheck parameter is false</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"true\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Assert $false \"This always throws an exception\"</dev:code>\n        <dev:remarks>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\t  <command:example>\n        <maml:title>--------------  EXAMPLE 2 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Assert ( ($i % 2) -eq 0 ) \"$i is not an even number\"</dev:code>\n        <dev:remarks>\n\t\t<maml:para>Description</maml:para>\n\t\t  <maml:para>-----------</maml:para>\n          <maml:para>This exmaple may throw an exception if $i is not an even number</maml:para>\n          <maml:para></maml:para>\n          <maml:para>Note:</maml:para>\n\t\t  <maml:para>It might be necessary to wrap the condition with paranthesis to force PS to evaluate the condition\nso that a boolean value is calculated and passed into the 'conditionToCheck' parameter.\n\nExample:\n    Assert 1 -eq 2 \"1 doesn't equal 2\"\n\nPS will pass 1 into the condtionToCheck variable and PS will look for a parameter called \"eq\" and\nthrow an exception with the following message \"A parameter cannot be found that matches parameter name 'eq'\"\n\nThe solution is to wrap the condition in () so that PS will evaluate it first.\n\n    Assert (1 -eq 2) \"1 doesn't equal 2\"\n\t\t  </maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n      <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Exec</command:name>\n      <maml:description>\n        <maml:para>Helper function for executing command-line programs.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This is a helper function that runs a scriptblock and checks the PS variable $lastexitcode to see if an error occcured. If an error is detected then an exception is thrown. This function allows you to run command-line programs without having to explicitly check fthe $lastexitcode variable.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Exec</command:name>\n        <command:parameter require=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>cmd</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">ScriptBlock</command:parameterValue>\n        </command:parameter>\n        <command:parameter require=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false\" postion=\"1\">\n          <maml:name>errorMessage</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>cmd</maml:name>\n        <maml:description>\n          <maml:para>The scriptblock to execute.  This scriptblock will typically contain the command-line invocation.</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"true\">ScriptBlock</command:parameterValue>\n        <dev:type>\n          <maml:name>Boolean</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n\t  <command:parameter required=\"false\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"1\">\n        <maml:name>failureMessage</maml:name>\n        <maml:description>\n          <maml:para>The error message used for the exception that is thrown.</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"true\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>exec { svn info $repository_trunk } \"Error executing SVN. Please verify SVN command-line client is installed\"</dev:code>\n        <dev:remarks>\n          <maml:para>This example calls the svn command-line client.</maml:para>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n  </command:command>\n\n  <command:command xmlns:maml=\"http://schemas.microsoft.com/maml/2004/10\" xmlns:command=\"http://schemas.microsoft.com/maml/dev/command/2004/10\" xmlns:dev=\"http://schemas.microsoft.com/maml/dev/2004/10\">\n    <command:details>\n      <command:name>Invoke-Task</command:name>\n      <maml:description>\n        <maml:para>Executes another task in the current build script.</maml:para>\n      </maml:description>\n      <maml:copyright>\n        <maml:para />\n      </maml:copyright>\n      <command:verb></command:verb>\n      <command:noun></command:noun>\n      <dev:version />\n    </command:details>\n    <maml:description>\n      <maml:para>This is a function that will allow you to invoke a Task from within another Task in the current build script.</maml:para>\n    </maml:description>\n    <command:syntax>\n      <command:syntaxItem>\n        <command:name>Invoke-Task</command:name>\n        <command:parameter require=\"true\" variableLength=\"true\" globbing=\"false\" pipelineInput=\"false\" postion=\"0\">\n          <maml:name>taskName</maml:name>\n          <command:parameterValue required=\"true\" variableLength=\"false\">String</command:parameterValue>\n        </command:parameter>\n       </command:syntaxItem>\n    </command:syntax>\n\t <command:parameters>\n      <command:parameter required=\"true\" variableLength=\"false\" globbing=\"false\" pipelineInput=\"false (ByValue)\" position=\"0\">\n        <maml:name>taskName</maml:name>\n        <maml:description>\n          <maml:para>The name of the task to execute.</maml:para>\n        </maml:description>\n        <command:parameterValue required=\"true\" variableLength=\"true\">String</command:parameterValue>\n        <dev:type>\n          <maml:name>String</maml:name>\n          <maml:uri />\n        </dev:type>\n        <dev:defaultValue></dev:defaultValue>\n      </command:parameter>\n    </command:parameters>\n    <command:inputTypes>\n      <command:inputType>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para />\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:inputType>\n    </command:inputTypes>\n    <command:returnValues>\n      <command:returnValue>\n        <dev:type>\n          <maml:name>None</maml:name>\n          <maml:uri />\n          <maml:description>\n            <maml:para></maml:para>\n          </maml:description>\n        </dev:type>\n        <maml:description />\n      </command:returnValue>\n    </command:returnValues>\n    <command:terminatingErrors />\n    <command:nonTerminatingErrors />\n    <maml:alertSet>\n      <maml:title></maml:title>\n\t  <maml:alert>\n\t\t<maml:para></maml:para>\n      </maml:alert>\n    </maml:alertSet>\n    <command:examples>\n      <command:example>\n        <maml:title>--------------  EXAMPLE 1 --------------</maml:title>\n        <maml:introduction>\n          <maml:para>C:\\PS&gt;</maml:para>\n        </maml:introduction>\n        <dev:code>Invoke-Task \"Compile\"</dev:code>\n        <dev:remarks>\n          <maml:para>This example calls the \"Compile\" task.</maml:para>\n          <maml:para></maml:para>\n          <maml:para></maml:para>\n        </dev:remarks>\n        <command:commandLines>\n          <command:commandLine>\n            <command:commandText />\n          </command:commandLine>\n        </command:commandLines>\n      </command:example>\n\n    </command:examples>\n    <maml:relatedLinks>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Assert</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Exec</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>FormatTaskName</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>Include</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Invoke-psake</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Properties</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n        <maml:linkText>Task</maml:linkText>\n\t     <maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t    <maml:linkText>TaskSetup</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>TaskTearDown</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n\t  <maml:navigationLink>\n\t\t<maml:linkText>Framework</maml:linkText>\n\t\t<maml:uri />\n      </maml:navigationLink>\n    </maml:relatedLinks>\n  </command:command>\n  </helpItems>\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/checkvariables.ps1",
    "content": "﻿Properties {\n  $x = 1\n  $y = 2\n}\n\nFormatTaskName \"[{0}]\"\n\nTask default -Depends Verify \n\nTask Verify -Description \"This task verifies psake's variables\" {\n\n  Assert (Test-Path 'variable:\\psake') \"psake variable was not exported from module\"\n  \n  Assert ($psake.ContainsKey(\"version\")) \"psake variable does not contain 'version'\"\n  Assert ($psake.ContainsKey(\"context\")) \"psake variable does not contain 'context'\"\n  Assert ($psake.ContainsKey(\"build_success\")) \"psake variable does not contain 'build_success'\"\n  Assert ($psake.ContainsKey(\"build_script_file\")) \"psake variable does not contain 'build_script_file'\"\n  Assert ($psake.ContainsKey(\"build_script_dir\")) \"psake variable does not contain 'build_script_dir'\"\n\n  Assert (![string]::IsNullOrEmpty($psake.version)) '$psake.version was null or empty'\n  Assert ($psake.context -ne $null) '$psake.context was null'\n  Assert (!$psake.build_success) '$psake.build_success should be $false'\n  Assert ($psake.build_script_file -ne $null) '$psake.build_script_file was null'\n  Assert ($psake.build_script_file.Name -eq \"checkvariables.ps1\") (\"psake variable: {0} was not equal to 'checkvariables.ps1'\" -f $psake.build_script_file.Name)\n  Assert (![string]::IsNullOrEmpty($psake.build_script_dir)) '$psake.build_script_dir was null or empty'\n\n  Assert ($psake.context.Peek().tasks.Count -ne 0) \"psake context variable 'tasks' had length zero\"\n  Assert ($psake.context.Peek().properties.Count -ne 0) \"psake context variable 'properties' had length zero\"\n  Assert ($psake.context.Peek().includes.Count -eq 0) \"psake context variable 'includes' should have had length zero\"\n  Assert ($psake.context.Peek().config -ne $null) \"psake context variable 'config' was null\"\n\n  Assert ($psake.context.Peek().currentTaskName -eq \"Verify\") 'psake variable: $currentTaskName was not set correctly'\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/continueonerror.ps1",
    "content": "Task default -Depends TaskA\n\nTask TaskA -Depends TaskB {\n\t\"Task - A\"\n}\n\nTask TaskB -Depends TaskC -ContinueOnError {\n\t\"Task - B\"\n\tthrow \"I failed on purpose!\"\n}\n\nTask TaskC {\n\t\"Task - C\"\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/default.ps1",
    "content": "properties {\n  $testMessage = 'Executed Test!'\n  $compileMessage = 'Executed Compile!'\n  $cleanMessage = 'Executed Clean!'\n}\n\ntask default -depends Test\n\ntask Test -depends Compile, Clean { \n  $testMessage\n}\n\ntask Compile -depends Clean { \n  $compileMessage\n}\n\ntask Clean { \n  $cleanMessage\n}\n\ntask ? -Description \"Helper to display task info\" {\n\tWrite-Documentation\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/formattaskname_scriptblock.ps1",
    "content": "properties {\n  $testMessage = 'Executed Test!'\n  $compileMessage = 'Executed Compile!'\n  $cleanMessage = 'Executed Clean!'\n}\n\ntask default -depends Test\n\nformatTaskName {\n\tparam($taskName)\n\twrite-host $taskName -foregroundcolor Green\n}\n\ntask Test -depends Compile, Clean { \n  $testMessage\n}\n\ntask Compile -depends Clean { \n  $compileMessage\n}\n\ntask Clean { \n  $cleanMessage\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/formattaskname_string.ps1",
    "content": "properties {\n  $testMessage = 'Executed Test!'\n  $compileMessage = 'Executed Compile!'\n  $cleanMessage = 'Executed Clean!'\n}\n\ntask default -depends Test\n\nformatTaskName \"-------{0}-------\"\n\ntask Test -depends Compile, Clean { \n  $testMessage\n}\n\ntask Compile -depends Clean { \n  $compileMessage\n}\n\ntask Clean { \n  $cleanMessage\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/msbuild40.ps1",
    "content": "Framework \"4.0\"\n# Framework \"4.0x64\"\n\ntask default -depends ShowMsBuildVersion\n\ntask ShowMsBuildVersion {\n  msbuild /version\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/nested/nested1.ps1",
    "content": "Properties {\r\t$x = 100\r}\r\rTask default -Depends Nested1CheckX\r\rTask Nested1CheckX{\r\tAssert ($x -eq 100) '$x was not 100' \r}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/nested/nested2.ps1",
    "content": "Properties {\r\t$x = 200\r}\r\rTask default -Depends Nested2CheckX\r\rTask Nested2CheckX{\r\tAssert ($x -eq 200) '$x was not 200' \r}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/nested.ps1",
    "content": "Properties {\n\t$x = 1\n}\n\nTask default -Depends RunNested1, RunNested2, CheckX\n\nTask RunNested1 {\n\tInvoke-psake .\\nested\\nested1.ps1\n}\n\nTask RunNested2 {\n\tInvoke-psake .\\nested\\nested2.ps1\n}\n\nTask CheckX{\n\tAssert ($x -eq 1) '$x was not 1' \n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/paralleltasks.ps1",
    "content": "Task ParallelTask1 {\n    \"ParallelTask1\"\n}\n\nTask ParallelTask2 {\n    \"ParallelTask2\"\n}\n\nTask ParallelNested1andNested2 {\n    $jobArray = @()\n    @(\"ParallelTask1\", \"ParallelTask2\") | ForEach-Object {\n        $jobArray += Start-Job { \n            param($scriptFile, $taskName)\n                Invoke-psake $scriptFile -taskList $taskName\n            } -ArgumentList $psake.build_script_file.FullName, $_ \n    }\n    Wait-Job $jobArray | Receive-Job\n}\n\nTask default -depends ParallelNested1andNested2"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/parameters.ps1",
    "content": "﻿properties {\n\t$my_property = $p1 + $p2\n}\n\ntask default -depends TestParams\n\ntask TestParams { \n\tAssert ($my_property -ne $null) \"`$my_property should not be null. Run with -parameters @{'p1' = 'v1'; 'p2' = 'v2'}\"\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/passingParametersString/build.Release.Version.bat",
    "content": "powershell -Command \"& {Import-Module .\\..\\..\\psake.psm1; Invoke-psake .\\parameters.ps1 -parameters @{\"buildConfiguration\"='Release';} }\"\n\nPause"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/passingParametersString/parameters.ps1",
    "content": "﻿properties {\n\t$buildOutputPath = \".\\bin\\$buildConfiguration\"\n}\n\ntask default -depends DoRelease\n\ntask DoRelease {\n\tAssert (\"$buildConfiguration\" -ne $null) \"buildConfiguration should not have been null\"\n\tAssert (\"$buildConfiguration\" -eq 'Release') \"buildConfiguration=[$buildConfiguration] should have been 'Release'\"\n\t\n\tWrite-Host \"\"\n\tWrite-Host \"\"\n\tWrite-Host \"\"\n\tWrite-Host -NoNewline \"Would build output into path \"\n\tWrite-Host -NoNewline -ForegroundColor Green \"$buildOutputPath\"\n\tWrite-Host -NoNewline \" for build configuration \"\n\tWrite-Host -ForegroundColor Green \"$buildConfiguration\"\n\tWrite-Host -NoNewline \".\"\n\tWrite-Host \"\"\n\tWrite-Host \"\"\n\tWrite-Host \"\"\n}\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/preandpostaction.ps1",
    "content": "task default -depends Test\n\ntask Test -depends Compile, Clean -PreAction {\"Pre-Test\"} -Action { \n  \"Test\"\n} -PostAction {\"Post-Test\"}\n\ntask Compile -depends Clean { \n  \"Compile\"\n}\n\ntask Clean { \n  \"Clean\"\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/preandpostcondition.ps1",
    "content": "properties {\n  $runTaskA = $false\n  $taskBSucceded = $true\n}\n\ntask default -depends TaskC\n\ntask TaskA -precondition { $runTaskA -eq $true } {\n  \"TaskA executed\"\n}\n\ntask TaskB -postcondition { $taskBSucceded -eq $true } {\n  \"TaskB executed\"\n}\n\ntask TaskC -depends TaskA,TaskB {\n  \"TaskC executed.\"\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/properties.ps1",
    "content": "﻿properties {\n  $x = $null\n  $y = $null\n  $z = $null\n}\n\ntask default -depends TestProperties\n\ntask TestProperties { \n  Assert ($x -ne $null) \"x should not be null. Run with -properties @{'x' = '1'; 'y' = '2'}\"\n  Assert ($y -ne $null) \"y should not be null. Run with -properties @{'x' = '1'; 'y' = '2'}\"\n  Assert ($z -eq $null) \"z should be null\"\n}"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/requiredvariables.ps1",
    "content": "﻿properties {\n  $x = $null\n  $y = $null\n  $z = $null\n}\n\ntask default -depends TestRequiredVariables\n\n# you can put arguments to task in multiple lines using `\ntask TestRequiredVariables `\n  -description \"This task shows how to make a variable required to run task. Run this script with -properties @{x = 1; y = 2; z = 3}\" `\n  -requiredVariables x, y, z `\n{\n}\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/examples/tasksetupandteardown.ps1",
    "content": "TaskSetup {\n  \"Executing task setup\"\n}\n\nTaskTearDown {\n  \"Executing task tear down\"\n}\n\nTask default -depends TaskB\n\nTask TaskA {\n  \"TaskA executed\"\n}\n\nTask TaskB -depends TaskA {\n  \"TaskB executed\"\n}\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/init.ps1",
    "content": "param($installPath, $toolsPath, $package)\n\n$psakeModule = Join-Path $toolsPath psake.psm1\nimport-module $psakeModule\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/license.txt",
    "content": "psake\nCopyright (c) 2012-13 James Kovacs, Damian Hickey and Contributors\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\nall copies 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\nTHE SOFTWARE."
  },
  {
    "path": "packages/psake.4.6.0/tools/psake-config.ps1",
    "content": "﻿<#\n-------------------------------------------------------------------\nDefaults\n-------------------------------------------------------------------\n$config.buildFileName=\"default.ps1\"\n$config.framework = \"4.0\"\n$config.taskNameFormat=\"Executing {0}\"\n$config.verboseError=$false\n$config.coloredOutput = $true\n$config.modules=$null\n\n-------------------------------------------------------------------\nLoad modules from .\\modules folder and from file my_module.psm1\n-------------------------------------------------------------------\n$config.modules=(\".\\modules\\*.psm1\",\".\\my_module.psm1\")\n\n-------------------------------------------------------------------\nUse scriptblock for taskNameFormat\n-------------------------------------------------------------------\n$config.taskNameFormat= { param($taskName) \"Executing $taskName at $(get-date)\" }\n#>\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/psake.cmd",
    "content": "@echo off\nrem Helper script for those who want to run psake from cmd.exe\nrem Example run from cmd.exe:\nrem psake \"default.ps1\" \"BuildHelloWord\" \"4.0\" \n\nif '%1'=='/?' goto help\nif '%1'=='-help' goto help\nif '%1'=='-h' goto help\n\npowershell -NoProfile -ExecutionPolicy Bypass -Command \"& '%~dp0\\psake.ps1' %*; if ($psake.build_success -eq $false) { exit 1 } else { exit 0 }\"\nexit /B %errorlevel%\n\n:help\npowershell -NoProfile -ExecutionPolicy Bypass -Command \"& '%~dp0\\psake.ps1' -help\"\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/psake.ps1",
    "content": "# Helper script for those who want to run psake without importing the module.\n# Example run from PowerShell:\n# .\\psake.ps1 \"default.ps1\" \"BuildHelloWord\" \"4.0\" \n\n# Must match parameter definitions for psake.psm1/invoke-psake \n# otherwise named parameter binding fails\nparam(\n    [Parameter(Position=0,Mandatory=0)]\n    [string]$buildFile,\n    [Parameter(Position=1,Mandatory=0)]\n    [string[]]$taskList = @(),\n    [Parameter(Position=2,Mandatory=0)]\n    [string]$framework,\n    [Parameter(Position=3,Mandatory=0)]\n    [switch]$docs = $false,\n    [Parameter(Position=4,Mandatory=0)]\n    [System.Collections.Hashtable]$parameters = @{},\n    [Parameter(Position=5, Mandatory=0)]\n    [System.Collections.Hashtable]$properties = @{},\n    [Parameter(Position=6, Mandatory=0)]\n    [alias(\"init\")]\n    [scriptblock]$initialization = {},\n    [Parameter(Position=7, Mandatory=0)]\n    [switch]$nologo = $false,\n    [Parameter(Position=8, Mandatory=0)]\n    [switch]$help = $false,\n    [Parameter(Position=9, Mandatory=0)]\n    [string]$scriptPath,\n    [Parameter(Position=10,Mandatory=0)]\n    [switch]$detailedDocs = $false\n)\n\n# setting $scriptPath here, not as default argument, to support calling as \"powershell -File psake.ps1\"\nif (!$scriptPath) {\n  $scriptPath = $(Split-Path -parent $MyInvocation.MyCommand.path)\n}\n\n# '[p]sake' is the same as 'psake' but $Error is not polluted\nremove-module [p]sake\nimport-module (join-path $scriptPath psake.psm1)\nif ($help) {\n  Get-Help Invoke-psake -full\n  return\n}\n\nif ($buildFile -and (-not(test-path $buildFile))) {\n    $absoluteBuildFile = (join-path $scriptPath $buildFile)\n    if (test-path $absoluteBuildFile) {\n        $buildFile = $absoluteBuildFile\n    }\n} \n\nInvoke-psake $buildFile $taskList $framework $docs $parameters $properties $initialization $nologo $detailedDocs\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/psake.psd1",
    "content": "@{\n    ModuleToProcess   = 'psake.psm1'\n    ModuleVersion     = '4.6.0'\n    GUID              = 'cfb53216-072f-4a46-8975-ff7e6bda05a5'\n    Author            = 'James Kovacs'\n    Copyright         = 'Copyright (c) 2012-16 James Kovacs, Damian Hickey and Contributors'\n    PowerShellVersion = '2.0'\n    Description       = 'psake is a build automation tool written in PowerShell.'\n    FunctionsToExport = @('Invoke-psake',\n                          'Invoke-Task',\n                          'Get-PSakeScriptTasks', \n                          'Task',\n                          'Properties',\n                          'Include',\n                          'FormatTaskName',\n                          'TaskSetup',\n                          'TaskTearDown',\n                          'Framework',\n                          'Assert',\n                          'Exec')\n    VariablesToExport = 'psake'\n\n    PrivateData = @{\n        PSData = @{\n            LicenseUri = 'https://github.com/psake/psake/blob/master/license.txt'\n            ProjectUri = 'https://github.com/psake/psake'\n            Tags     = @('Build', 'Task')\n            IconUri  = 'https://raw.githubusercontent.com/psake/graphics/master/jpg/psake-full-icon-teal-bg-256x256.jpg'\n        }\n    }\n}\n"
  },
  {
    "path": "packages/psake.4.6.0/tools/psake.psm1",
    "content": "# psake\n# Copyright (c) 2012 James Kovacs\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n# THE SOFTWARE.\n\n#Requires -Version 2.0\n\nif ($PSVersionTable.PSVersion.Major -ge 3)\n{\n    $script:IgnoreError = 'Ignore'\n}\nelse\n{\n    $script:IgnoreError = 'SilentlyContinue'\n}\n\n#-- Public Module Functions --#\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Invoke-Task\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)] [string]$taskName\n    )\n\n    Assert $taskName ($msgs.error_invalid_task_name)\n\n    $taskKey = $taskName.ToLower()\n\n    if ($currentContext.aliases.Contains($taskKey)) {\n        $taskName = $currentContext.aliases.$taskKey.Name\n        $taskKey = $taskName.ToLower()\n    }\n\n    $currentContext = $psake.context.Peek()\n\n    Assert ($currentContext.tasks.Contains($taskKey)) ($msgs.error_task_name_does_not_exist -f $taskName)\n\n    if ($currentContext.executedTasks.Contains($taskKey))  { return }\n\n    Assert (!$currentContext.callStack.Contains($taskKey)) ($msgs.error_circular_reference -f $taskName)\n\n    $currentContext.callStack.Push($taskKey)\n\n    $task = $currentContext.tasks.$taskKey\n\n    $precondition_is_valid = & $task.Precondition\n\n    if (!$precondition_is_valid) {\n        WriteColoredOutput ($msgs.precondition_was_false -f $taskName) -foregroundcolor Cyan\n    } else {\n        if ($taskKey -ne 'default') {\n\n            if ($task.PreAction -or $task.PostAction) {\n                Assert ($task.Action -ne $null) ($msgs.error_missing_action_parameter -f $taskName)\n            }\n\n            if ($task.Action) {\n                try {\n                    foreach($childTask in $task.DependsOn) {\n                        Invoke-Task $childTask\n                    }\n\n                    $stopwatch = [System.Diagnostics.Stopwatch]::StartNew()\n                    $currentContext.currentTaskName = $taskName\n\n                    & $currentContext.taskSetupScriptBlock\n\n                    if ($task.PreAction) {\n                        & $task.PreAction\n                    }\n\n                    if ($currentContext.config.taskNameFormat -is [ScriptBlock]) {\n                        & $currentContext.config.taskNameFormat $taskName\n                    } else {\n                        WriteColoredOutput ($currentContext.config.taskNameFormat -f $taskName) -foregroundcolor Cyan\n                    }\n\n                    foreach ($variable in $task.requiredVariables) {\n                        Assert ((test-path \"variable:$variable\") -and ((get-variable $variable).Value -ne $null)) ($msgs.required_variable_not_set -f $variable, $taskName)\n                    }\n\n                    & $task.Action\n\n                    if ($task.PostAction) {\n                        & $task.PostAction\n                    }\n\n                    & $currentContext.taskTearDownScriptBlock\n                    $task.Duration = $stopwatch.Elapsed\n                } catch {\n                    if ($task.ContinueOnError) {\n                        \"-\"*70\n                        WriteColoredOutput ($msgs.continue_on_error -f $taskName,$_) -foregroundcolor Yellow\n                        \"-\"*70\n                        $task.Duration = $stopwatch.Elapsed\n                    }  else {\n                        throw $_\n                    }\n                }\n            } else {\n                # no action was specified but we still execute all the dependencies\n                foreach($childTask in $task.DependsOn) {\n                    Invoke-Task $childTask\n                }\n            }\n        } else {\n            foreach($childTask in $task.DependsOn) {\n                Invoke-Task $childTask\n            }\n        }\n\n        Assert (& $task.Postcondition) ($msgs.postcondition_failed -f $taskName)\n    }\n\n    $poppedTaskKey = $currentContext.callStack.Pop()\n    Assert ($poppedTaskKey -eq $taskKey) ($msgs.error_corrupt_callstack -f $taskKey,$poppedTaskKey)\n\n    $currentContext.executedTasks.Push($taskKey)\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Exec\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][scriptblock]$cmd,\n        [Parameter(Position=1,Mandatory=0)][string]$errorMessage = ($msgs.error_bad_command -f $cmd),\n        [Parameter(Position=2,Mandatory=0)][int]$maxRetries = 0,\n        [Parameter(Position=3,Mandatory=0)][string]$retryTriggerErrorPattern = $null\n    )\n\n    $tryCount = 1\n\n    do {\n        try {\n            $global:lastexitcode = 0\n            & $cmd\n            if ($lastexitcode -ne 0) {\n                throw (\"Exec: \" + $errorMessage)\n            }\n            break\n        }\n        catch [Exception]\n        {\n            if ($tryCount -gt $maxRetries) {\n                throw $_\n            }\n\n            if ($retryTriggerErrorPattern -ne $null) {\n                $isMatch = [regex]::IsMatch($_.Exception.Message, $retryTriggerErrorPattern)\n\n                if ($isMatch -eq $false) {\n                    throw $_\n                }\n            }\n\n            Write-Host \"Try $tryCount failed, retrying again in 1 second...\"\n\n            $tryCount++\n\n            [System.Threading.Thread]::Sleep([System.TimeSpan]::FromSeconds(1))\n        }\n    }\n    while ($true)\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Assert\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)]$conditionToCheck,\n        [Parameter(Position=1,Mandatory=1)]$failureMessage\n    )\n    if (!$conditionToCheck) {\n        throw (\"Assert: \" + $failureMessage)\n    }\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Task\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][string]$name = $null,\n        [Parameter(Position=1,Mandatory=0)][scriptblock]$action = $null,\n        [Parameter(Position=2,Mandatory=0)][scriptblock]$preaction = $null,\n        [Parameter(Position=3,Mandatory=0)][scriptblock]$postaction = $null,\n        [Parameter(Position=4,Mandatory=0)][scriptblock]$precondition = {$true},\n        [Parameter(Position=5,Mandatory=0)][scriptblock]$postcondition = {$true},\n        [Parameter(Position=6,Mandatory=0)][switch]$continueOnError = $false,\n        [Parameter(Position=7,Mandatory=0)][string[]]$depends = @(),\n        [Parameter(Position=8,Mandatory=0)][string[]]$requiredVariables = @(),\n        [Parameter(Position=9,Mandatory=0)][string]$description = $null,\n        [Parameter(Position=10,Mandatory=0)][string]$alias = $null\n    )\n    if ($name -eq 'default') {\n        Assert (!$action) ($msgs.error_default_task_cannot_have_action)\n    }\n\n    $newTask = @{\n        Name = $name\n        DependsOn = $depends\n        PreAction = $preaction\n        Action = $action\n        PostAction = $postaction\n        Precondition = $precondition\n        Postcondition = $postcondition\n        ContinueOnError = $continueOnError\n        Description = $description\n        Duration = [System.TimeSpan]::Zero\n        RequiredVariables = $requiredVariables\n        Alias = $alias\n    }\n\n    $taskKey = $name.ToLower()\n\n    $currentContext = $psake.context.Peek()\n\n    Assert (!$currentContext.tasks.ContainsKey($taskKey)) ($msgs.error_duplicate_task_name -f $name)\n\n    $currentContext.tasks.$taskKey = $newTask\n\n    if($alias)\n    {\n        $aliasKey = $alias.ToLower()\n\n        Assert (!$currentContext.aliases.ContainsKey($aliasKey)) ($msgs.error_duplicate_alias_name -f $alias)\n\n        $currentContext.aliases.$aliasKey = $newTask\n    }\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Properties {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][scriptblock]$properties\n    )\n    $psake.context.Peek().properties += $properties\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Include {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][string]$fileNamePathToInclude\n    )\n    Assert (test-path $fileNamePathToInclude -pathType Leaf) ($msgs.error_invalid_include_path -f $fileNamePathToInclude)\n    $psake.context.Peek().includes.Enqueue((Resolve-Path $fileNamePathToInclude));\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction FormatTaskName {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)]$format\n    )\n    $psake.context.Peek().config.taskNameFormat = $format\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction TaskSetup {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][scriptblock]$setup\n    )\n    $psake.context.Peek().taskSetupScriptBlock = $setup\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction TaskTearDown {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][scriptblock]$teardown\n    )\n    $psake.context.Peek().taskTearDownScriptBlock = $teardown\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Framework {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position=0,Mandatory=1)][string]$framework\n    )\n    $psake.context.Peek().config.framework = $framework\n    ConfigureBuildEnvironment\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Get-PSakeScriptTasks {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position = 0, Mandatory = 0)][string] $buildFile\n    )\n\n    if (!$buildFile) {\n        $buildFile = $psake.config_default.buildFileName\n    }\n\n    try\n    {\n        ExecuteInBuildFileScope $buildFile $MyInvocation.MyCommand.Module {\n            param($currentContext, $module)\n            return GetTasksFromContext $currentContext\n        }\n\n    } finally {\n\n        CleanupEnvironment\n    }\n}\n\n# .ExternalHelp  psake.psm1-help.xml\nfunction Invoke-psake {\n    [CmdletBinding()]\n    param(\n        [Parameter(Position = 0, Mandatory = 0)][string] $buildFile,\n        [Parameter(Position = 1, Mandatory = 0)][string[]] $taskList = @(),\n        [Parameter(Position = 2, Mandatory = 0)][string] $framework,\n        [Parameter(Position = 3, Mandatory = 0)][switch] $docs = $false,\n        [Parameter(Position = 4, Mandatory = 0)][hashtable] $parameters = @{},\n        [Parameter(Position = 5, Mandatory = 0)][hashtable] $properties = @{},\n        [Parameter(Position = 6, Mandatory = 0)][alias(\"init\")][scriptblock] $initialization = {},\n        [Parameter(Position = 7, Mandatory = 0)][switch] $nologo = $false,\n        [Parameter(Position = 8, Mandatory = 0)][switch] $detailedDocs = $false,\n        [Parameter(Position = 9, Mandatory = 0)][switch] $notr = $false # disable time report\n    )\n    try {\n        if (-not $nologo) {\n            \"psake version {0}`nCopyright (c) 2010-2014 James Kovacs & Contributors`n\" -f $psake.version\n        }\n\n        if (!$buildFile) {\n          $buildFile = $psake.config_default.buildFileName\n        }\n        elseif (!(test-path $buildFile -pathType Leaf) -and (test-path $psake.config_default.buildFileName -pathType Leaf)) {\n            # If the $config.buildFileName file exists and the given \"buildfile\" isn 't found assume that the given\n            # $buildFile is actually the target Tasks to execute in the $config.buildFileName script.\n            $taskList = $buildFile.Split(', ')\n            $buildFile = $psake.config_default.buildFileName\n        }\n\n        ExecuteInBuildFileScope $buildFile $MyInvocation.MyCommand.Module {\n            param($currentContext, $module)            \n\n            $stopwatch = [System.Diagnostics.Stopwatch]::StartNew()\n            \n            if ($docs -or $detailedDocs) {\n                WriteDocumentation($detailedDocs)\n                return\n            }\n            \n            foreach ($key in $parameters.keys) {\n                if (test-path \"variable:\\$key\") {\n                    set-item -path \"variable:\\$key\" -value $parameters.$key -WhatIf:$false -Confirm:$false | out-null\n                } else {\n                    new-item -path \"variable:\\$key\" -value $parameters.$key -WhatIf:$false -Confirm:$false | out-null\n                }\n            }\n            \n            # The initial dot (.) indicates that variables initialized/modified in the propertyBlock are available in the parent scope.\n            foreach ($propertyBlock in $currentContext.properties) {\n                . $propertyBlock\n            }\n            \n            foreach ($key in $properties.keys) {\n                if (test-path \"variable:\\$key\") {\n                    set-item -path \"variable:\\$key\" -value $properties.$key -WhatIf:$false -Confirm:$false | out-null\n                }\n            }\n            \n            # Simple dot sourcing will not work. We have to force the script block into our\n            # module's scope in order to initialize variables properly.\n            . $module $initialization\n            \n            # Execute the list of tasks or the default task\n            if ($taskList) {\n                foreach ($task in $taskList) {\n                    invoke-task $task\n                }\n            } elseif ($currentContext.tasks.default) {\n                invoke-task default\n            } else {\n                throw $msgs.error_no_default_task\n            }\n            \n            WriteColoredOutput (\"`n\" + $msgs.build_success + \"`n\") -foregroundcolor Green\n            \n            $stopwatch.Stop()\n            if (-not $notr) {\n                WriteTaskTimeSummary $stopwatch.Elapsed\n            }\n        }\n\n        $psake.build_success = $true\n\n    } catch {\n        $currentConfig = GetCurrentConfigurationOrDefault\n        if ($currentConfig.verboseError) {\n            $error_message = \"{0}: An Error Occurred. See Error Details Below: `n\" -f (Get-Date)\n            $error_message += (\"-\" * 70) + \"`n\"\n            $error_message += \"Error: {0}`n\" -f (ResolveError $_ -Short)\n            $error_message += (\"-\" * 70) + \"`n\"\n            $error_message += ResolveError $_\n            $error_message += (\"-\" * 70) + \"`n\"\n            $error_message += \"Script Variables\" + \"`n\"\n            $error_message += (\"-\" * 70) + \"`n\"\n            $error_message += get-variable -scope script | format-table | out-string\n        } else {\n            # ($_ | Out-String) gets error messages with source information included.\n            $error_message = \"Error: {0}: `n{1}\" -f (Get-Date), (ResolveError $_ -Short)\n        }\n\n        $psake.build_success = $false\n\n        # if we are running in a nested scope (i.e. running a psake script from a psake script) then we need to re-throw the exception\n        # so that the parent script will fail otherwise the parent script will report a successful build\n        $inNestedScope = ($psake.context.count -gt 1)\n        if ( $inNestedScope ) {\n            throw $_\n        } else {\n            if (!$psake.run_by_psake_build_tester) {\n                WriteColoredOutput $error_message -foregroundcolor Red\n            }\n        }\n    } finally {\n        CleanupEnvironment\n    }\n}\n\n#-- Private Module Functions --#\nfunction WriteColoredOutput {\n    param(\n        [string] $message,\n        [System.ConsoleColor] $foregroundcolor\n    )\n\n    $currentConfig = GetCurrentConfigurationOrDefault\n    if ($currentConfig.coloredOutput -eq $true) {\n        if (($Host.UI -ne $null) -and ($Host.UI.RawUI -ne $null) -and ($Host.UI.RawUI.ForegroundColor -ne $null)) {\n            $previousColor = $Host.UI.RawUI.ForegroundColor\n            $Host.UI.RawUI.ForegroundColor = $foregroundcolor\n        }\n    }\n\n    $message\n\n    if ($previousColor -ne $null) {\n        $Host.UI.RawUI.ForegroundColor = $previousColor\n    }\n}\n\nfunction LoadModules {\n    $currentConfig = $psake.context.peek().config\n    if ($currentConfig.modules) {\n\n        $scope = $currentConfig.moduleScope\n\n        $global = [string]::Equals($scope, \"global\", [StringComparison]::CurrentCultureIgnoreCase)\n\n        $currentConfig.modules | foreach {\n            resolve-path $_ | foreach {\n                \"Loading module: $_\"\n                $module = import-module $_ -passthru -DisableNameChecking -global:$global\n                if (!$module) {\n                    throw ($msgs.error_loading_module -f $_.Name)\n                }\n            }\n        }\n        \"\"\n    }\n}\n\nfunction LoadConfiguration {\n    param(\n        [string] $configdir = $PSScriptRoot\n    )\n\n    $psakeConfigFilePath = (join-path $configdir \"psake-config.ps1\")\n\n    if (test-path $psakeConfigFilePath -pathType Leaf) {\n        try {\n            $config = GetCurrentConfigurationOrDefault\n            . $psakeConfigFilePath\n        } catch {\n            throw \"Error Loading Configuration from psake-config.ps1: \" + $_\n        }\n    }\n}\n\nfunction GetCurrentConfigurationOrDefault() {\n    if ($psake.context.count -gt 0) {\n        return $psake.context.peek().config\n    } else {\n        return $psake.config_default\n    }\n}\n\nfunction CreateConfigurationForNewContext {\n    param(\n        [string] $buildFile,\n        [string] $framework\n    )\n\n    $previousConfig = GetCurrentConfigurationOrDefault\n\n    $config = new-object psobject -property @{\n        buildFileName = $previousConfig.buildFileName;\n        framework = $previousConfig.framework;\n        taskNameFormat = $previousConfig.taskNameFormat;\n        verboseError = $previousConfig.verboseError;\n        coloredOutput = $previousConfig.coloredOutput;\n        modules = $previousConfig.modules;\n        moduleScope =  $previousConfig.moduleScope;\n    }\n\n    if ($framework) {\n        $config.framework = $framework;\n    }\n\n    if ($buildFile) {\n        $config.buildFileName = $buildFile;\n    }\n\n    return $config\n}\n\nfunction ConfigureBuildEnvironment {\n    $framework = $psake.context.peek().config.framework\n    if ($framework -cmatch '^((?:\\d+\\.\\d+)(?:\\.\\d+){0,1})(x86|x64){0,1}$') {\n        $versionPart = $matches[1]\n        $bitnessPart = $matches[2]\n    } else {\n        throw ($msgs.error_invalid_framework -f $framework)\n    }\n    $versions = $null\n    $buildToolsVersions = $null\n    switch ($versionPart) {\n        '1.0' {\n            $versions = @('v1.0.3705')\n        }\n        '1.1' {\n            $versions = @('v1.1.4322')\n        }\n        '2.0' {\n            $versions = @('v2.0.50727')\n        }\n        '3.0' {\n            $versions = @('v2.0.50727')\n        }\n        '3.5' {\n            $versions = @('v3.5', 'v2.0.50727')\n        }\n        '4.0' {\n            $versions = @('v4.0.30319')\n        }\n        {($_ -eq '4.5.1') -or ($_ -eq '4.5.2')} {\n            $versions = @('v4.0.30319')\n            $buildToolsVersions = @('14.0', '12.0')\n        }\n        {($_ -eq '4.6') -or ($_ -eq '4.6.1')} {\n            $versions = @('v4.0.30319')\n            $buildToolsVersions = @('14.0')\n        }\n\n        default {\n            throw ($msgs.error_unknown_framework -f $versionPart, $framework)\n        }\n    }\n\n    $bitness = 'Framework'\n    if ($versionPart -ne '1.0' -and $versionPart -ne '1.1') {\n        switch ($bitnessPart) {\n            'x86' {\n                $bitness = 'Framework'\n                $buildToolsKey = 'MSBuildToolsPath32'\n            }\n            'x64' {\n                $bitness = 'Framework64'\n                $buildToolsKey = 'MSBuildToolsPath'\n            }\n            { [string]::IsNullOrEmpty($_) } {\n                $ptrSize = [System.IntPtr]::Size\n                switch ($ptrSize) {\n                    4 {\n                        $bitness = 'Framework'\n                        $buildToolsKey = 'MSBuildToolsPath32'\n                    }\n                    8 {\n                        $bitness = 'Framework64'\n                        $buildToolsKey = 'MSBuildToolsPath'\n                    }\n                    default {\n                        throw ($msgs.error_unknown_pointersize -f $ptrSize)\n                    }\n                }\n            }\n            default {\n                throw ($msgs.error_unknown_bitnesspart -f $bitnessPart, $framework)\n            }\n        }\n    }\n    $frameworkDirs = @()\n    if ($buildToolsVersions -ne $null) {\n        foreach($ver in $buildToolsVersions) {\n            if (Test-Path \"HKLM:\\SOFTWARE\\Microsoft\\MSBuild\\ToolsVersions\\$ver\") {\n                $frameworkDirs += (Get-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\MSBuild\\ToolsVersions\\$ver\" -Name $buildToolsKey).$buildToolsKey\n            }\n        }\n    }\n    $frameworkDirs = $frameworkDirs + @($versions | foreach { \"$env:windir\\Microsoft.NET\\$bitness\\$_\\\" })\n\n    for ($i = 0; $i -lt $frameworkDirs.Count; $i++) {\n        $dir = $frameworkDirs[$i]\n        if ($dir -Match \"\\$\\(Registry:HKEY_LOCAL_MACHINE(.*?)@(.*)\\)\") {\n            $key = \"HKLM:\" + $matches[1]\n            $name = $matches[2]\n            $dir = (Get-ItemProperty -Path $key -Name $name).$name\n            $frameworkDirs[$i] = $dir\n        }\n    }\n\n    $frameworkDirs | foreach { Assert (test-path $_ -pathType Container) ($msgs.error_no_framework_install_dir_found -f $_)}\n\n    $env:path = ($frameworkDirs -join \";\") + \";$env:path\"\n    # if any error occurs in a PS function then \"stop\" processing immediately\n    # this does not effect any external programs that return a non-zero exit code\n    $global:ErrorActionPreference = \"Stop\"\n}\n\nfunction ExecuteInBuildFileScope {    \n    param([string]$buildFile, $module, [scriptblock]$sb)\n    \n    # Execute the build file to set up the tasks and defaults\n    Assert (test-path $buildFile -pathType Leaf) ($msgs.error_build_file_not_found -f $buildFile)\n\n    $psake.build_script_file = get-item $buildFile\n    $psake.build_script_dir = $psake.build_script_file.DirectoryName\n    $psake.build_success = $false\n\n    $psake.context.push(@{\n        \"taskSetupScriptBlock\" = {};\n        \"taskTearDownScriptBlock\" = {};\n        \"executedTasks\" = new-object System.Collections.Stack;\n        \"callStack\" = new-object System.Collections.Stack;\n        \"originalEnvPath\" = $env:path;\n        \"originalDirectory\" = get-location;\n        \"originalErrorActionPreference\" = $global:ErrorActionPreference;\n        \"tasks\" = @{};\n        \"aliases\" = @{};\n        \"properties\" = @();\n        \"includes\" = new-object System.Collections.Queue;\n        \"config\" = CreateConfigurationForNewContext $buildFile $framework\n    })\n\n    LoadConfiguration $psake.build_script_dir\n\n    set-location $psake.build_script_dir\n\n    LoadModules\n\n    $frameworkOldValue = $framework\n    . $psake.build_script_file.FullName\n\n    $currentContext = $psake.context.Peek()\n\n    if ($framework -ne $frameworkOldValue) {\n        writecoloredoutput $msgs.warning_deprecated_framework_variable -foregroundcolor Yellow\n        $currentContext.config.framework = $framework\n    }\n\n    ConfigureBuildEnvironment\n\n    while ($currentContext.includes.Count -gt 0) {\n        $includeFilename = $currentContext.includes.Dequeue()\n        . $includeFilename\n    }\n\n    & $sb $currentContext $module\n}\n\nfunction CleanupEnvironment {\n    if ($psake.context.Count -gt 0) {\n        $currentContext = $psake.context.Peek()\n        $env:path = $currentContext.originalEnvPath\n        Set-Location $currentContext.originalDirectory\n        $global:ErrorActionPreference = $currentContext.originalErrorActionPreference\n        [void] $psake.context.Pop()\n    }\n}\n\nfunction SelectObjectWithDefault\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(ValueFromPipeline=$true)]\n        [PSObject]\n        $InputObject,\n        [string]\n        $Name,\n        $Value\n    )\n\n    process {\n        if ($_ -eq $null) { $Value }\n        elseif ($_ | Get-Member -Name $Name) {\n          $_.$Name\n        }\n        elseif (($_ -is [Hashtable]) -and ($_.Keys -contains $Name)) {\n          $_.$Name\n        }\n        else { $Value }\n    }\n}\n\n# borrowed from Jeffrey Snover http://blogs.msdn.com/powershell/archive/2006/12/07/resolve-error.aspx\n# modified to better handle SQL errors\nfunction ResolveError\n{\n    [CmdletBinding()]\n    param(\n        [Parameter(ValueFromPipeline=$true)]\n        $ErrorRecord=$Error[0],\n        [Switch]\n        $Short\n    )\n\n    process {\n        if ($_ -eq $null) { $_ = $ErrorRecord }\n        $ex = $_.Exception\n\n        if (-not $Short) {\n            $error_message = \"`nErrorRecord:{0}ErrorRecord.InvocationInfo:{1}Exception:`n{2}\"\n            $formatted_errorRecord = $_ | format-list * -force | out-string\n            $formatted_invocationInfo = $_.InvocationInfo | format-list * -force | out-string\n            $formatted_exception = ''\n\n            $i = 0\n            while ($ex -ne $null) {\n                $i++\n                $formatted_exception += (\"$i\" * 70) + \"`n\" +\n                    ($ex | format-list * -force | out-string) + \"`n\"\n                $ex = $ex | SelectObjectWithDefault -Name 'InnerException' -Value $null\n            }\n\n            return $error_message -f $formatted_errorRecord, $formatted_invocationInfo, $formatted_exception\n        }\n\n        $lastException = @()\n        while ($ex -ne $null) {\n            $lastMessage = $ex | SelectObjectWithDefault -Name 'Message' -Value ''\n            $lastException += ($lastMessage -replace \"`n\", '')\n            if ($ex -is [Data.SqlClient.SqlException]) {\n                $lastException += \"(Line [$($ex.LineNumber)] \" +\n                    \"Procedure [$($ex.Procedure)] Class [$($ex.Class)] \" +\n                    \" Number [$($ex.Number)] State [$($ex.State)] )\"\n            }\n            $ex = $ex | SelectObjectWithDefault -Name 'InnerException' -Value $null\n        }\n        $shortException = $lastException -join ' --> '\n\n        $header = $null\n        $current = $_\n        $header = (($_.InvocationInfo |\n            SelectObjectWithDefault -Name 'PositionMessage' -Value '') -replace \"`n\", ' '),\n            ($_ | SelectObjectWithDefault -Name 'Message' -Value ''),\n            ($_ | SelectObjectWithDefault -Name 'Exception' -Value '') |\n                ? { -not [String]::IsNullOrEmpty($_) } |\n                Select -First 1\n\n        $delimiter = ''\n        if ((-not [String]::IsNullOrEmpty($header)) -and\n            (-not [String]::IsNullOrEmpty($shortException)))\n            { $delimiter = ' [<<==>>] ' }\n\n        return \"$($header)$($delimiter)Exception: $($shortException)\"\n    }\n}\n\nfunction GetTasksFromContext($currentContext) {    \n\n    $docs = $currentContext.tasks.Keys | foreach-object {\n\n        $task = $currentContext.tasks.$_\n        new-object PSObject -property @{\n            Name = $task.Name;\n            Alias = $task.Alias;\n            Description = $task.Description;\n            DependsOn = $task.DependsOn;\n        }\n    }\n\n    return $docs\n}\n\nfunction WriteDocumentation($showDetailed) {\n\n    $currentContext = $psake.context.Peek()\n\n    if ($currentContext.tasks.default) {\n        $defaultTaskDependencies = $currentContext.tasks.default.DependsOn\n    } else {\n        $defaultTaskDependencies = @()\n    }\n    \n    $docs = GetTasksFromContext $currentContext | \n                Where   {$_.Name -ne 'default'} | \n                ForEach {\n                    $isDefault = $null\n                    if ($defaultTaskDependencies -contains $_.Name) { \n                        $isDefault = $true \n                    }\n                    return Add-Member -InputObject $_ 'Default' $isDefault -PassThru\n                }\n\n    if ($showDetailed) {\n        $docs | sort 'Name' | format-list -property Name,Alias,Description,@{Label=\"Depends On\";Expression={$_.DependsOn -join ', '}},Default\n    } else {\n        $docs | sort 'Name' | format-table -autoSize -wrap -property Name,Alias,@{Label=\"Depends On\";Expression={$_.DependsOn -join ', '}},Default,Description\n    }\n}\n\nfunction WriteTaskTimeSummary($invokePsakeDuration) {\n    if ($psake.context.count -gt 0) {\n        \"-\" * 70\n        \"Build Time Report\"\n        \"-\" * 70\n        $list = @()\n        $currentContext = $psake.context.Peek()\n        while ($currentContext.executedTasks.Count -gt 0) {\n            $taskKey = $currentContext.executedTasks.Pop()\n            $task = $currentContext.tasks.$taskKey\n            if ($taskKey -eq \"default\") {\n                continue\n            }\n            $list += new-object PSObject -property @{\n                Name = $task.Name;\n                Duration = $task.Duration\n            }\n        }\n        [Array]::Reverse($list)\n        $list += new-object PSObject -property @{\n            Name = \"Total:\";\n            Duration = $invokePsakeDuration\n        }\n        # using \"out-string | where-object\" to filter out the blank line that format-table prepends\n        $list | format-table -autoSize -property Name,Duration | out-string -stream | where-object { $_ }\n    }\n}\n\nDATA msgs {\nconvertfrom-stringdata @'\n    error_invalid_task_name = Task name should not be null or empty string.\n    error_task_name_does_not_exist = Task {0} does not exist.\n    error_circular_reference = Circular reference found for task {0}.\n    error_missing_action_parameter = Action parameter must be specified when using PreAction or PostAction parameters for task {0}.\n    error_corrupt_callstack = Call stack was corrupt. Expected {0}, but got {1}.\n    error_invalid_framework = Invalid .NET Framework version, {0} specified.\n    error_unknown_framework = Unknown .NET Framework version, {0} specified in {1}.\n    error_unknown_pointersize = Unknown pointer size ({0}) returned from System.IntPtr.\n    error_unknown_bitnesspart = Unknown .NET Framework bitness, {0}, specified in {1}.\n    error_no_framework_install_dir_found = No .NET Framework installation directory found at {0}.\n    error_bad_command = Error executing command {0}.\n    error_default_task_cannot_have_action = 'default' task cannot specify an action.\n    error_duplicate_task_name = Task {0} has already been defined.\n    error_duplicate_alias_name = Alias {0} has already been defined.\n    error_invalid_include_path = Unable to include {0}. File not found.\n    error_build_file_not_found = Could not find the build file {0}.\n    error_no_default_task = 'default' task required.\n    error_loading_module = Error loading module {0}.\n    warning_deprecated_framework_variable = Warning: Using global variable $framework to set .NET framework version used is deprecated. Instead use Framework function or configuration file psake-config.ps1.\n    required_variable_not_set = Variable {0} must be set to run task {1}.\n    postcondition_failed = Postcondition failed for task {0}.\n    precondition_was_false = Precondition was false, not executing task {0}.\n    continue_on_error = Error in task {0}. {1}\n    build_success = Build Succeeded!\n'@\n}\n\nImport-LocalizedData -BindingVariable msgs -FileName messages.psd1 -ErrorAction $script:IgnoreError\n\n$scriptDir = Split-Path $MyInvocation.MyCommand.Path\n$manifestPath = Join-Path $scriptDir psake.psd1\n$manifest = Test-ModuleManifest -Path $manifestPath -WarningAction SilentlyContinue\n\n$script:psake = @{}\n\n$psake.version = $manifest.Version.ToString()\n$psake.context = new-object system.collections.stack # holds onto the current state of all variables\n$psake.run_by_psake_build_tester = $false # indicates that build is being run by psake-BuildTester\n$psake.config_default = new-object psobject -property @{\n    buildFileName = \"default.ps1\";\n    framework = \"4.0\";\n    taskNameFormat = \"Executing {0}\";\n    verboseError = $false;\n    coloredOutput = $true;\n    modules = $null;\n    moduleScope = \"\";\n} # contains default configuration, can be overriden in psake-config.ps1 in directory with psake.psm1 or in directory with current build script\n\n$psake.build_success = $false # indicates that the current build was successful\n$psake.build_script_file = $null # contains a System.IO.FileInfo for the current build script\n$psake.build_script_dir = \"\" # contains a string with fully-qualified path to current build script\n\nLoadConfiguration\n\nexport-modulemember -function Invoke-psake, Invoke-Task, Get-PSakeScriptTasks, Task, Properties, Include, FormatTaskName, TaskSetup, TaskTearDown, Framework, Assert, Exec -variable psake\n"
  },
  {
    "path": "packages/repositories.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<repositories>\r\n  <repository path=\"..\\ManyConsole.Tests\\packages.config\" />\r\n  <repository path=\"..\\ManyConsole\\packages.config\" />\r\n  <repository path=\"..\\SampleConsole\\packages.config\" />\r\n</repositories>"
  },
  {
    "path": "psake.ps1",
    "content": "# Helper script for those who want to run psake without importing the module.\r\n# Example:\r\n# .\\psake.ps1 \"default.ps1\" \"BuildHelloWord\" \"4.0\" \r\n\r\n# Must match parameter definitions for psake.psm1/invoke-psake \r\n# otherwise named parameter binding fails\r\nparam(\r\n  [Parameter(Position=0,Mandatory=0)]\r\n  [string]$buildFile = 'default.ps1',\r\n  [Parameter(Position=1,Mandatory=0)]\r\n  [string[]]$taskList = @(),\r\n  [Parameter(Position=2,Mandatory=0)]\r\n  [string]$framework = '4.5.1',\r\n  [Parameter(Position=3,Mandatory=0)]\r\n  [switch]$docs = $false,\r\n  [Parameter(Position=4,Mandatory=0)]\r\n  [System.Collections.Hashtable]$parameters = @{},\r\n  [Parameter(Position=5, Mandatory=0)]\r\n  [System.Collections.Hashtable]$properties = @{}\r\n)\r\n\r\nremove-module psake -ea 'SilentlyContinue'\r\n$scriptPath = (join-path (split-Path -parent $MyInvocation.MyCommand.path) \"packages\\psake.4.6.0\\tools\")\r\nimport-module (join-path $scriptPath psake.psm1)\r\nif (-not(test-path $buildFile))\r\n{\r\n    $buildFile = (join-path $scriptPath $buildFile)\r\n} \r\ninvoke-psake $buildFile $taskList $framework $docs $parameters $properties\r\nexit $lastexitcode"
  },
  {
    "path": "psake_ext.ps1",
    "content": "\n#  brazenly borrowed from https://github.com/ayende/ravendb\n\n\nfunction Get-File-Exists-On-Path\n{\n\tparam(\n\t\t[string]$file\n\t)\n\t$results = ($Env:Path).Split(\";\") | Get-ChildItem -filter $file -erroraction silentlycontinue\n\t$found = ($results -ne $null)\n\treturn $found\n}\n\nfunction Get-Git-Commit {\n\tif ((Get-File-Exists-On-Path \"git.exe\")){\n\t\t$gitLog = git log --oneline -1\n\t\treturn $gitLog.Split(' ')[0]\n\t}\n\telse {\n\t\treturn \"0000000\"\n\t}\n}\n\n\nfunction Generate-Assembly-Info {\nparam(\n\t[string]$clsCompliant = \"true\",\n\t[string]$title, \n\t[string]$description, \n\t[string]$company, \n\t[string]$product, \n\t[string]$copyright, \n\t[string]$version,\n\t[string]$fileVersion,\n\t[string]$file = $(throw \"file is a required parameter.\")\n)\n  \n  if($env:buildlabel -eq 13 -and (Test-Path $file))\n\t{\n      return\n\t}\n   \n   $commit = Get-Git-Commit\n \n  \n  $asmInfo = \"using System;\nusing System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n#if !SILVERLIGHT\n[assembly: SuppressIldasmAttribute()]\n#endif\n[assembly: CLSCompliantAttribute($clsCompliant )]\n[assembly: ComVisibleAttribute(false)]\n[assembly: AssemblyTitleAttribute(\"\"$title\"\")]\n[assembly: AssemblyDescriptionAttribute(\"\"$description\"\")]\n[assembly: AssemblyCompanyAttribute(\"\"$company\"\")]\n[assembly: AssemblyProductAttribute(\"\"$product\"\")]\n[assembly: AssemblyCopyrightAttribute(\"\"$copyright\"\")]\n[assembly: AssemblyVersionAttribute(\"\"$version\"\")]\n//[assembly: AssemblyInformationalVersionAttribute(\"\"$version / $commit\"\")]\n[assembly: AssemblyFileVersionAttribute(\"\"$fileVersion\"\")]\n[assembly: AssemblyDelaySignAttribute(false)]\n\"\n\n\t$dir = [System.IO.Path]::GetDirectoryName($file)\n\tif ([System.IO.Directory]::Exists($dir) -eq $false)\n\t{\n\t\tWrite-Host \"Creating directory $dir\"\n\t\t[System.IO.Directory]::CreateDirectory($dir)\n\t}\n\tWrite-Host \"Generating assembly info file: $file\"\n\t$asmInfo | set-content $file -encoding utf8\n}\n\n"
  },
  {
    "path": "readme.md",
    "content": "### ManyConsole\n\nAvailable on Nuget: http://nuget.org/List/Packages/ManyConsole\n\nThanks to Daniel González for providing some additional documentation: http://dgondotnet.blogspot.dk/2013/08/my-last-console-application-manyconsole.html\n\nMono.Options (formerly NDesk.Options) is a great library for processing command-line parameters.  ManyConsole extends Mono.Options to allow building console applications that support separate commands.\n\nIf you are not familiar with Mono.Options, you should start by using that: https://components.xamarin.com/gettingstarted/mono.options?version=5.3.0.  Add ManyConsole when you feel the urge to differentiate commands (you'll still need the Mono.Options usage).\n\nManyConsole provides a console interface for the user to list available commands, call and get help for each.\n\nTo use ManyConsole:\n\n- Create a command line app referencing the ManyConsole nuget.\n- Have Program.Main call ConsoleCommandDispatcher (see https://github.com/fschwiet/ManyConsole/blob/master/SampleConsole/Program.cs)\n  - You can use ConsoleCommandDispatcher to find commands in an assembly, or not.\n- To add a command to your console application, inherit from ConsoleCommand.\n  - See the sample comands at https://github.com/fschwiet/ManyConsole/tree/master/SampleConsole\n  - Commands can be forced to show the user the help text by throwing an exception of type: ConsoleHelpAsException\n  - There are a handful of methods you can call from the derived class's constructor to add metadata to the command.  Use autocompete to find them.\n\n### Quick Start Guide\n\nRun this from NuGet Package Management Console:\n\n```posh\nInstall-Package ManyConsole\n```\n\nDrop this in to automatically load all of the commands that we'll create next:\n\n```csharp\npublic class Program\n{\n    public static int Main(string[] args)\n    {\n        var commands = GetCommands();\n\n        return ConsoleCommandDispatcher.DispatchCommand(commands, args, Console.Out);\n    }\n\n    public static IEnumerable<ConsoleCommand> GetCommands()\n    {\n        return ConsoleCommandDispatcher.FindCommandsInSameAssemblyAs(typeof(Program));\n    }\n}\n```\n\nCreate a command with one optional, one required and a short and long description:\n\n```csharp\npublic class PrintFileCommand : ConsoleCommand\n{\n    private const int Success = 0;\n    private const int Failure = 2;\n\n    public string FileLocation { get; set; }\n    public bool StripCommaCharacter { get; set; }\n\n    public PrintFileCommand()\n    {\n        // Register the actual command with a simple (optional) description.\n        IsCommand(\"PrintFile\", \"Quick print utility.\");\n            \n        // Add a longer description for the help on that specific command.\n        HasLongDescription(\"This can be used to quickly read a file's contents \" +\n        \"while optionally stripping out the ',' character.\");\n            \n        // Required options/flags, append '=' to obtain the required value.\n        HasRequiredOption(\"f|file=\", \"The full path of the file.\", p => FileLocation = p);\n\n        // Optional options/flags, append ':' to obtain an optional value, or null if not specified.\n        HasOption(\"s|strip:\", \"Strips ',' from the file before writing to output.\",\n            t => StripCommaCharacter = t == null ? true : Convert.ToBoolean(t));\n    }\n\n    public override int Run(string[] remainingArguments)\n    {\n        try\n        {\n            var fileContents = File.ReadAllText(FileLocation);\n\n            if (StripCommaCharacter)\n                fileContents = fileContents.Replace(\",\", string.Empty);\n\n            Console.Out.WriteLine(fileContents);\n\n            return Success;\n        }\n        catch (Exception ex)\n        {\n            Console.Error.WriteLine(ex.Message);\n            Console.Error.WriteLine(ex.StackTrace);\n\n            return Failure;\n        }\n    }\n}\n```\n\nOk, now when you run it, it should work:\n\n```\n>ManyConsoleDocumentation PrintFile -f \"C:\\HelloWorld.txt\"\n\nExtra parameters specified: C:\\HelloWorld.txt\n\n'PrintFile' - Quick print utility.\n\nThis can be used to quickly read a file's contents while optionally stripping out the ',' character.\n\nExpected usage: ManyConsoleDocumentation.exe PrintFile <options>\n<options> available:\n  -f, --file                 The full path of the file.\n  -s, --strip                Strips ',' from the file before writing to\n                               output.\n```\n\nIt doesn't work and thinks we specified an invalid parameter. This is because options that are followed by a parameter must have an '=' symbol, so update the two commands with `f|file=` and `s|strip=`, it should now work:\n\n```\n>ManyConsoleDocumentation PrintFile -f \"C:\\HelloWorld.txt\"\n\nExecuting PrintFile (Quick print utility.):\n    FileLocation : C:\\HelloWorld.txt\n    StripCommaCharacter : False\n\nHello, world!\n\n>ManyConsoleDocumentation PrintFile -f \"C:\\HelloWorld.txt\" -s true\n\nExecuting PrintFile (Quick print utility.):\n    FileLocation : C:\\HelloWorld.txt\n    StripCommaCharacter : True\n\nHello world!\n```\n\nNow you can easily supply multiple commands with their own set of unique arguments:\n\n```csharp\npublic class EchoCommand : ConsoleCommand\n{\n    public string ToEcho { get; set; }\n\n    public EchoCommand()\n    {\n        IsCommand(\"Echo\", \"Echo's text\");\n        HasRequiredOption(\"t|text=\", \"The text to echo back.\", t => ToEcho = t);\n    }\n\n    public override int Run(string[] remainingArguments)\n    {\n        Console.Out.WriteLine(ToEcho);\n\n        return 0;\n    }\n}\n```\n\nHere's how the help looks, plus help for our two commands:\n\n```\n>ManyConsoleDocumentation help\n\nAvailable commands are:\n\n    Echo        - Echo's text\n    PrintFile   - Quick print utility.\n\n    help <name> - For help with one of the above commands\n\n>ManyConsoleDocumentation help PrintFile\n\n'PrintFile' - Quick print utility.\n\nThis can be used to quickly read a file's contents while optionally stripping out the ',' character.\n\nExpected usage: ManyConsoleDocumentation.exe PrintFile <options>\n<options> available:\n  -f, --file=VALUE           The full path of the file.\n  -s, --strip=VALUE          Strips ',' from the file before writing to\n                               output.\n\n>ManyConsoleDocumentation help Echo\n\n'Echo' - Echo's text\n\nExpected usage: ManyConsoleDocumentation.exe Echo <options>\n<options> available:\n  -t, --text=VALUE           The text to echo back.\n```\n\n### Building the solution, running tests, and packaging the nuget file\n\n- You will probably need to download the old copy of .NET this was built against: https://dotnet.microsoft.com/en-us/download/dotnet/2.2 (the last I built was with SDK 2.2.207)\n- From a powershell window, run psake.ps1\n- This will run the tasks defined in default.ps1, building the project, running the tests and putting together a nupkg file.\n- The version number in default.ps1 needs to be updated when building a new nupkg file for release.\n\n"
  },
  {
    "path": "tools/PSUpdateXml.psm1",
    "content": "\r\n\r\n\r\n$license = \"`\r\nCopyright (c) 2010 Frank Schwieterman`\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\n`\r\norignal source/documentation: https://github.com/fschwiet/psupdatexml\r\n\";\r\n\r\n\r\n\r\n$currentNamespaceManager = $null;\r\n$currentNode = $null;\r\n\r\n\r\nfunction update-xml([System.IO.FileInfo]$xmlFile, \r\n    [ScriptBlock]$action) {\r\n\r\n    $doc = New-Object System.Xml.XmlDocument\r\n    $currentNamespaceManager = New-Object System.Xml.XmlNamespaceManager $doc.NameTable\r\n    $currentNode = $doc\r\n\r\n    $xmlFile = (resolve-path $xmlFile).path;\r\n\r\n    $doc.Load($xmlFile)\r\n\r\n    & $action\r\n     \r\n    $doc.Save($xmlFile)\r\n}\r\n\r\nfunction add-xmlnamespace([string] $name, [string] $value) {\r\n    $currentNamespaceManager.AddNamespace( $name, $value);\r\n}\r\n\r\nfunction check-quantifier-against-nodes($nodes, $exactlyonce,  $atleastonce,  $atmostonce) {\r\n    \r\n    if ($exactlyonce) {\r\n        Assert ($nodes.length -eq 1) \"Expected to find one match, actually found $($nodes.length) matches for xpath expression `\"$xpath`\".\"\r\n    }\r\n    \r\n    if ($atleastonce) {\r\n        Assert ($nodes.length -ge 1) \"Expected to find at least one match, actually found $($nodes.length) matches for xpath expression `\"$xpath`\".\"\r\n    }\r\n    if ($atmostonce) {\r\n        Assert ($nodes.length -le 1) \"Expected to find at most one match, actually found $($nodes.length) matches for xpath expression `\"$xpath`\".\"\r\n    }\r\n}\r\n\r\n\r\nfunction get-xml([string] $xpath, \r\n    [switch]$exactlyonce = $false, \r\n    [switch]$atleastonce = $false, \r\n    [switch]$atmostonce = $false) {\r\n    \r\n    $nodes = @($currentNode.SelectNodes($xpath, $currentNamespaceManager))\r\n     \r\n    check-quantifier-against-nodes $nodes $exactlyonce $atleastonce $atmostonce\r\n\r\n    foreach ($node in $nodes) {\r\n        if ($node.NodeType -eq \"Element\") {\r\n            $node.InnerXml\r\n        }\r\n        else {\r\n            $node.Value\r\n        }\r\n    }\r\n}\r\n\r\nfunction set-xml(\r\n    [string] $xpath, \r\n    [string] $value, \r\n    [switch]$exactlyonce = $false, \r\n    [switch]$atleastonce = $false, \r\n    [switch]$atmostonce = $false) {\r\n\r\n    $nodes = @($currentNode.SelectNodes($xpath, $currentNamespaceManager))\r\n    \r\n    check-quantifier-against-nodes $nodes $exactlyonce $atleastonce $atmostonce\r\n \r\n    foreach ($node in $nodes) {\r\n        if ($node.NodeType -eq \"Element\") {\r\n            $node.InnerXml = $value\r\n        }\r\n        else {\r\n        \r\n            if ($value) {\r\n                $node.Value = $value\r\n            } else {\r\n                \r\n                $nav = $node.CreateNavigator();\r\n                $nav.DeleteSelf();\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\nfunction set-attribute(\r\n    [string] $name,\r\n    [string] $value) {\r\n    \r\n    if ($value) {\r\n        $currentNode.SetAttribute($name, $value);\r\n    } else {\r\n        $currentNode.RemoveAttribute($name);\r\n    }\r\n}\r\n\r\n\r\nfunction remove-xml([string] $xpath, \r\n    [switch]$exactlyonce = $false, \r\n    [switch]$atleastonce = $false, \r\n    [switch]$atmostonce = $false) {\r\n\r\n    $nodes = @($currentNode.SelectNodes($xpath, $currentNamespaceManager))\r\n     \r\n    check-quantifier-against-nodes $nodes $exactlyonce $atleastonce $atmostonce\r\n\r\n    foreach($node in $nodes) {\r\n        $nav = $node.CreateNavigator();\r\n        $nav.DeleteSelf();\r\n    }\r\n}\r\n\r\nfunction append-xml([string] $xpath, \r\n    [string] $value, \r\n    [switch]$exactlyonce = $false, \r\n    [switch]$atleastonce = $false, \r\n    [switch]$atmostonce = $false) {\r\n\r\n    $nodes = @($currentNode.SelectNodes($xpath, $currentNamespaceManager))\r\n     \r\n    check-quantifier-against-nodes $nodes $exactlyonce $atleastonce $atmostonce\r\n\r\n    foreach($node in $nodes) {\r\n        $nav = $node.CreateNavigator();\r\n        $nav.AppendChild($value);\r\n    }\r\n}\r\n\r\n\r\nfunction for-xml([string] $xpath, \r\n    [ScriptBlock] $action, \r\n    [switch]$exactlyonce = $false, \r\n    [switch]$atleastonce = $false, \r\n    [switch]$atmostonce = $false) {\r\n\r\n    $originalNode = $currentNode\r\n    \r\n    try {\r\n        $nodes = @($currentNode.SelectNodes($xpath, $currentNamespaceManager))\r\n\r\n        check-quantifier-against-nodes $nodes $exactlyonce $atleastonce $atmostonce\r\n\r\n        foreach($node in $nodes) {\r\n            $currentNode = $node;\r\n            & $action;\r\n        }\r\n\r\n    } finally {\r\n        $currentNode = $originalNode\r\n    }\r\n}\r\n\r\n\r\nexport-modulemember -function update-xml,add-xmlnamespace,get-xml,set-xml,set-attribute,remove-xml,append-xml,for-xml\r\n\r\n\r\n"
  }
]